• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

cache/H03-May-2022-

logo/H03-May-2022-

src/H25-Apr-2019-2,1731,606

themes/H25-Apr-2019-7,8126,817

vendor/H25-Apr-2019-222,592135,093

.htaccessH A D25-Apr-2019331 1512

INSTALL.mdH A D25-Apr-20192.4 KiB9775

README.mdH A D25-Apr-20194.9 KiB8765

boot.phpH A D25-Apr-2019498 159

config.ini-exampleH A D03-May-20222.2 KiB5949

index.phpH A D25-Apr-2019690 3117

README.md

1<p align="left"><img src="logo/horizontal.png" alt=gitlist" height="120px"></p>
2
3# GitList: an elegant git repository viewer
4[![Build Status](https://secure.travis-ci.org/klaussilveira/gitlist.png)](http://travis-ci.org/klaussilveira/gitlist)
5
6GitList 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/).
7
8## Features
9* Multiple repository support
10* Multiple branch support
11* Multiple tag support
12* Commit history, blame, diff
13* RSS feeds
14* Syntax highlighting
15* Repository statistics
16
17## Screenshots
18![Screenshot 1](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/1.png)
19![Screenshot 2](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/2.png)
20![Screenshot 3](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/3.png)
21![Screenshot 4](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/4.png)
22![Screenshot 5](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/5.png)
23![Screenshot 6](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/6.png)
24![Screenshot 7](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/7.png)
25![Screenshot 8](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/8.png)
26![Screenshot 9](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/9.png)
27![Screenshot 10](https://raw.githubusercontent.com/klaussilveira/gitlist/gh-pages/img/roller/10.png)
28
29## Requirements
30In order to run GitList on your server, you'll need:
31
32* PHP 5.3+
33* git
34* Webserver (Apache, nginx, lighttpd)
35
36## Installation
37* Download GitList from [gitlist.org](http://gitlist.org/) and decompress to your `/var/www/gitlist` folder, or anywhere else you want to place GitList.
38* 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
39* Rename the `config.ini-example` file to `config.ini`.
40* Open up the `config.ini` and configure your installation. You'll have to provide where your repositories are located.
41* 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/).
42* Create the cache folder and give read/write permissions to your web server user:
43
44```
45cd /var/www/gitlist
46mkdir cache
47chmod 777 cache
48```
49
50That's it, installation complete! If you're having problems, check the [Troubleshooting](https://github.com/klaussilveira/gitlist/wiki/Troubleshooting) page.
51
52
53## Authors and contributors
54* [Klaus Silveira](http://www.klaussilveira.com) (Creator, developer)
55
56## License
57[New BSD license](http://www.opensource.org/licenses/bsd-license.php)
58
59## Development
60GitList uses [Composer](http://getcomposer.org/) to manage dependencies and [Ant](http://ant.apache.org/) to build the project.
61
62Once you have all the dependencies set, you can clone the repository and run Ant:
63
64```
65git clone https://github.com/klaussilveira/gitlist.git
66ant
67```
68
69If you just want to get the project dependencies, instead of building everything:
70
71```
72git clone https://github.com/klaussilveira/gitlist.git
73curl -s http://getcomposer.org/installer | php
74php composer.phar install
75```
76
77If you have Composer in your path, things get easier. But you know the drill.
78
79## Contributing
80If 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.
81
82* Stay tuned to possible bugs, suboptimal code, duplicated code, overcomplicated expressions and unused code
83* Improve the test coverage by creating unit and functional tests
84
85## Further information
86If 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! :)
87