All Projects → klaussilveira → Gitlist

klaussilveira / Gitlist

Licence: bsd-3-clause
An elegant and modern git repository viewer

Programming Languages

Less
1899 projects
PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
Twig
543 projects
Makefile
30231 projects
CSS
56736 projects

Projects that are alternatives of or similar to Gitlist

Fgh
📁 Automate the lifecycle and organization of your cloned GitHub repositories
Stars: ✭ 107 (-96.23%)
Mutual labels:  repository-management
Pull
🤖 Keep your forks up-to-date via automated PRs
Stars: ✭ 3,364 (+18.58%)
Mutual labels:  repository-management
indy
Simple artifact proxy for maven and similar build tools
Stars: ✭ 27 (-99.05%)
Mutual labels:  repository-management
Git Of Theseus
Analyze how a Git repo grows over time
Stars: ✭ 1,856 (-34.58%)
Mutual labels:  repository-management
Projj
Manage repository easily.
Stars: ✭ 206 (-92.74%)
Mutual labels:  repository-management
cleanup
Remove gone Git branches with ease.
Stars: ✭ 21 (-99.26%)
Mutual labels:  repository-management
Github Repo Size
🚀 Chrome extension to display repository size on GitHub
Stars: ✭ 859 (-69.72%)
Mutual labels:  repository-management
ferryd
Fast, safe and reliable transit for the delivery of software updates to users.
Stars: ✭ 43 (-98.48%)
Mutual labels:  repository-management
Reposilite
Lightweight repository management software dedicated for the Maven based artifacts (formerly NanoMaven) 📦
Stars: ✭ 222 (-92.17%)
Mutual labels:  repository-management
toolbox
Unified kit with all the scripts required for maintaining the repository 🧰
Stars: ✭ 60 (-97.89%)
Mutual labels:  repository-management
Satis Control Panel
Satis Control Panel (SCP) is a simple web UI for managing your Satis Repository for Composer Packages.
Stars: ✭ 144 (-94.92%)
Mutual labels:  repository-management
Dcrm
Darwin Cydia Repo Manager - v4 redesigned in Django.
Stars: ✭ 188 (-93.37%)
Mutual labels:  repository-management
comptroller
A simple and lightweight tool to manage your monorepo.
Stars: ✭ 26 (-99.08%)
Mutual labels:  repository-management
Bodhi
Bodhi is a web-system that facilitates the process of publishing updates for a Fedora-based software distribution.
Stars: ✭ 114 (-95.98%)
Mutual labels:  repository-management
repobee
CLI tool for managing Git repositories on GitHub and GitLab in the context of education
Stars: ✭ 51 (-98.2%)
Mutual labels:  repository-management
Micromanage
A Micro-services Helpers Framework | Easily manage multiple repositories and projects
Stars: ✭ 93 (-96.72%)
Mutual labels:  repository-management
Nexus Oss
Sonatype Nexus OSS
Stars: ✭ 240 (-91.54%)
Mutual labels:  repository-management
git-beam-it
Bulk clone Github repositories for a specific user/organisation or team
Stars: ✭ 26 (-99.08%)
Mutual labels:  repository-management
rpm-adapter
Turns your data storage into an RPM repository
Stars: ✭ 21 (-99.26%)
Mutual labels:  repository-management
artifact-resolver
Standalone jar executable client Maven 2 artifact resolver based on Eclipse Aether.
Stars: ✭ 13 (-99.54%)
Mutual labels:  repository-management

gitlist"

GitList: an elegant git repository viewer

Build Status

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 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.

Features

  • Multiple repository support
  • Multiple branch support
  • Multiple tag support
  • Commit history, blame, diff
  • RSS feeds
  • Syntax highlighting
  • Repository statistics

Screenshots

Screenshot 1 Screenshot 2 Screenshot 3 Screenshot 4 Screenshot 5 Screenshot 6 Screenshot 7 Screenshot 8 Screenshot 9 Screenshot 10

Requirements

In order to run GitList on your server, you'll need:

  • PHP 5.3+
  • git
  • Webserver (Apache, nginx, lighttpd)

Installation

  • Download GitList from 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/).

  • Set file permissions for .htaccess

    chmod 644 .htaccess
    
  • 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 page.

Authors and contributors

License

New BSD license

Development

GitList uses Composer to manage dependencies and Ant to build the project.

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
  • Improve the test coverage by creating unit and functional tests

Further information

If you want to know more about customizing GitList, check the Customization page on the wiki. Also, if you're having problems with GitList, check the Troubleshooting page. Don't forget to report issues and suggest new features! :)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].