REPO URLs:
https://git.somenet.org/irc/peer.git (if public repo)
git remote set-url --push origin ssh://git@git.somenet.org:2/irc/peer.git
git@git.somenet.org:irc/peer.git

GITWEB (is public repo):
http://git.somenet.org/irc/peer.git

GITOLITE instance admin (send ssh-keys to):
someone@somenet.org

--------------------------------------------------------------------------
RECOMMENDED CLIENT CONFIGURATION:

   # Make Git enable rebasing instead of merging on all new tracked
   # branches in *ALL* your repos. (get rid of merge-commits when pulling)
   # Affects only *NEW* tracked branches.
git config --global branch.autosetuprebase always


   # Make Git rebase the master branch instead of merging in *ALL* your
   # repos. (get rid of merge-commits when pulling)
   # Useful if you didnt have branch.autosetuprebase set before cloning
   # and want all your repos to rebase.
git config --global branch.master.rebase true


   # If you like colors consider adding these config options.
git config color.ui true
git config color.diff.whitespace red reverse


  # WINDOWS USERS ONLY
  # Make Git convert all the types of newline to "\n".
  # Might break some stuff.
git config core.autocrlf input
--------------------------------------------------------------------------
AUTOGENERATED FILE.