http://uov5vlsywysdx44mykfwhezqazyubs7zyqdrsl7iaawwrtkkdaig5xqd.onion/articles/SetupGitServer
Git and Gitolite Gitolite is a nice software to manage our repos. There is Gitosis too but I prefer Gitolite. Create a "git" account For this, we need to create an account named "git". This account will be used for managing our repos. Just run the following: root:server# sudo adduser \
--system \
--shell /bin/bash \
--gecos 'git SCM user' \
--group \
--disabled-password \
--home /var/lib/git \
git This will create our git account, with the...