Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rtyley/mini-git-server
pure-Java WAR capable of hosting git repos and exposing them with git+ssh. Basically a stripped-down copy of Gerrit
https://github.com/rtyley/mini-git-server
Last synced: 23 days ago
JSON representation
pure-Java WAR capable of hosting git repos and exposing them with git+ssh. Basically a stripped-down copy of Gerrit
- Host: GitHub
- URL: https://github.com/rtyley/mini-git-server
- Owner: rtyley
- License: apache-2.0
- Created: 2011-03-17T00:48:33.000Z (over 13 years ago)
- Default Branch: toy-git-server
- Last Pushed: 2011-04-19T15:00:37.000Z (over 13 years ago)
- Last Synced: 2024-10-13T14:35:12.175Z (about 1 month ago)
- Language: Java
- Homepage:
- Size: 9.78 MB
- Stars: 41
- Watchers: 4
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
mini-git-server
===============Pure-Java WAR capable of hosting git repos and exposing them with git+ssh.
Basically a copy of Gerrit (http://code.google.com/p/gerrit/) - with all the review-related
functionality stripped away and the dependency on a database removed (making it entirely filesystem based).I use it for integration-testing my git client.
Just as with Gerrit, the location of the server site is passed to the war using the 'gerrit.site_path' system
property (will probably rename that at some point), and the format of the directory structure and the
[gerrit.site_path]/etc/gerrit.config file is just the same. My gerrit.config file is just:[gerrit]
basePath = "repos"...and which means the server will expect to find all the repos in [gerrit.site_path]/repos