REPO URLs: https://git.somenet.org/ctf/pub/network.git (if public repo) git remote set-url --push origin ssh://git@git.somenet.org:2/ctf/pub/network.git git@git.somenet.org:ctf/pub/network.git GITWEB (is public repo): http://git.somenet.org/ctf/pub/network.git GITOLITE instance admin (send ssh-keys to): someone@somenet.org RECOMMENDED CLIENT CONFIGURATION -------------------------------------------------------------------------- # Show forgotten whitespaces. git config color.ui true git config color.diff.whitespace red reverse # remove removed branches + tags. git config --global fetch.prune true git config --global fetch.pruneTags true ################ # Use rebasing # ################ git config --global branch.autosetuprebase always git config --global rebase.stat true git config --global branch.master.rebase true ################# # WINDOWS USERS # ################# # Make Git convert all the types of newline to "\n". # Might break some stuff. git config core.autocrlf input -------------------------------------------------------------------------- AUTOGENERATED FILE.