RSS Git Download  Clone
..
  accordion.less 578B Added simple theming system 10 years ago
  alerts.less 1kB Added simple theming system 10 years ago
  bootstrap.less 2kB Added simple theming system 10 years ago
  breadcrumbs.less 587B Added simple theming system 10 years ago
  button-groups.less 5kB Added simple theming system 10 years ago
  buttons.less 4kB Added simple theming system 10 years ago
  carousel.less 2kB Added simple theming system 10 years ago
  close.less 590B Added simple theming system 10 years ago
  code.less 1kB Added simple theming system 10 years ago
  codemirror.less 5kB Added simple theming system 10 years ago
  component-animations.less 275B Added simple theming system 10 years ago
  dropdowns.less 3kB Added simple theming system 10 years ago
  files.less 4kB Added rule for filename overflow in commit list. Fixes #436 10 years ago
  forms.less 12kB Added simple theming system 10 years ago
  grid.less 147B Added simple theming system 10 years ago
  hero-unit.less 404B Added simple theming system 10 years ago
  labels-badges.less 1kB Added simple theming system 10 years ago
  layouts.less 371B Added simple theming system 10 years ago
  mixins.less 19kB Updated mixins.less to support new less syntax 10 years ago
  modals.less 2kB Added simple theming system 10 years ago
  navbar.less 8kB Added simple theming system 10 years ago
  navs.less 7kB Added simple theming system 10 years ago
  network.less 2kB Added simple theming system 10 years ago
  pager.less 567B Added simple theming system 10 years ago
  pagination.less 1kB Added simple theming system 10 years ago
  popovers.less 1kB Added simple theming system 10 years ago
  progress-bars.less 2kB Added simple theming system 10 years ago
  reset.less 3kB Added simple theming system 10 years ago
  responsive-1200px-min.less 393B Added simple theming system 10 years ago
  responsive-767px-max.less 3kB Added simple theming system 10 years ago
  responsive-768px-979px.less 364B Added simple theming system 10 years ago
  responsive-navbar.less 3kB Added simple theming system 10 years ago
  responsive-utilities.less 1kB Added simple theming system 10 years ago
  responsive.less 1kB Added simple theming system 10 years ago
  scaffolding.less 573B Added simple theming system 10 years ago
  sprites.less 10kB Added simple theming system 10 years ago
  tables.less 5kB Added simple theming system 10 years ago
  thumbnails.less 1kB Added simple theming system 10 years ago
  tooltip.less 803B Added simple theming system 10 years ago
  type.less 4kB Added simple theming system 10 years ago
  utilities.less 323B Added simple theming system 10 years ago
  variables.less 6kB Added simple theming system 10 years ago
  wells.less 451B Added simple theming system 10 years ago
  README.md
# GitList: an elegant git repository viewer [![Build Status](https://secure.travis-ci.org/klaussilveira/gitlist.png)](http://travis-ci.org/klaussilveira/gitlist) GitList is an elegant and modern web interface for interacting with multiple git repositories. It allows you to browse repositories using your favorite browser, viewing files under different revisions, commit history, diffs. It also generates RSS feeds for each repository, allowing you to stay up-to-date with the latest changes anytime, anywhere. GitList was written in PHP, on top of the [Silex](http://silex.sensiolabs.org/) microframework and powered by the Twig template engine. This means that GitList is easy to install and easy to customize. Also, the GitList gorgeous interface was made possible due to [Bootstrap](http://twitter.github.com/bootstrap/). ## Features * Multiple repository support * Multiple branch support * Multiple tag support * Commit history, blame, diff * RSS feeds * Syntax highlighting * Repository statistics ## Screenshots [![GitList Screenshot](http://dl.dropbox.com/u/62064441/th1.jpg)](http://cloud.github.com/downloads/klaussilveira/gitlist/1.jpg) [![GitList Screenshot](http://dl.dropbox.com/u/62064441/th2.jpg)](http://cloud.github.com/downloads/klaussilveira/gitlist/2.jpg) [![GitList Screenshot](http://dl.dropbox.com/u/62064441/th3.jpg)](http://cloud.github.com/downloads/klaussilveira/gitlist/3.jpg) [![GitList Screenshot](http://dl.dropbox.com/u/62064441/th4.jpg)](http://cloud.github.com/downloads/klaussilveira/gitlist/4.jpg) [![GitList Screenshot](http://dl.dropbox.com/u/62064441/th5.jpg)](http://cloud.github.com/downloads/klaussilveira/gitlist/5.jpg) You can also see a live demo [here](http://gitlist-khornberg.rhcloud.com/). ## Requirements In order to run GitList on your server, you'll need: * git * Apache with mod_rewrite enabled or nginx * PHP 5.3.3 ## Installation * Download GitList from [gitlist.org](http://gitlist.org/) and decompress to your `/var/www/gitlist` folder, or anywhere else you want to place GitList. * Do not download a branch or tag from GitHub, unless you want to use the development version. The version available for download at the website already has all dependencies bundled, so you don't have to use composer or any other tool * Rename the `config.ini-example` file to `config.ini`. * Open up the `config.ini` and configure your installation. You'll have to provide where your repositories are located. * In case GitList isn't accessed through the root of the website, open .htaccess and edit RewriteBase (for example, /gitlist/ if GitList is accessed through http://localhost/gitlist/). * Create the cache folder and give read/write permissions to your web server user: ``` cd /var/www/gitlist mkdir cache chmod 777 cache ``` That's it, installation complete! If you're having problems, check the [Troubleshooting](https://github.com/klaussilveira/gitlist/wiki/Troubleshooting) page. ## Authors and contributors * [Klaus Silveira](http://www.klaussilveira.com) (Creator, developer) ## License [New BSD license](http://www.opensource.org/licenses/bsd-license.php) ## Todo * improve the current test code coverage * test the interface * submodule support * multilanguage support ## Development GitList uses [Composer](http://getcomposer.org/) to manage dependencies and [Ant](http://ant.apache.org/) to build the project. In order to run all the targets in the build script, you will need [PHPUnit](http://www.phpunit.de/), [phpcpd](https://github.com/sebastianbergmann/phpcpd), [phploc](https://github.com/sebastianbergmann/phploc), [PHPMD](http://phpmd.org/) and [PHP_Depend](http://pdepend.org). Once you have all the dependencies set, you can clone the repository and run Ant: ``` git clone https://github.com/klaussilveira/gitlist.git ant ``` If you just want to get the project dependencies, instead of building everything: ``` git clone https://github.com/klaussilveira/gitlist.git curl -s http://getcomposer.org/installer | php php composer.phar install ``` If you have Composer in your path, things get easier. But you know the drill. ## Contributing If you are a developer, we need your help. GitList is a young project and we have lots of stuff to do. Some developers are contributing with new features, others with bug fixes. But you can also dedicate yourself to refactoring the current codebase and improving what we already have. This is very important, we want GitList to be a state-of-the-art application, and we need your help for that. * Stay tuned to possible bugs, suboptimal code, duplicated code, overcomplicated expressions and unused code with [PHPMD](http://ci.gitlist.org:8080/job/GitList%20\(master\)/9/pmdResult/?) in our CI server * Try to fix any [violations](http://ci.gitlist.org:8080/job/GitList%20\(master\)/violations/) reported * Improve the [test coverage](http://ci.gitlist.org:8080/job/GitList%20\(master\)/9/cloverphp-report/) by creating unit and functional tests ## Further information If you want to know more about customizing GitList, check the [Customization](https://github.com/klaussilveira/gitlist/wiki/Customizing) page on the wiki. Also, if you're having problems with GitList, check the [Troubleshooting](https://github.com/klaussilveira/gitlist/wiki/Troubleshooting) page. Don't forget to report issues and suggest new features! :)