2 https://git.somenet.org/factorio/some-autoresearch.git (if public repo)
3 git remote set-url --push origin ssh://git@git.somenet.org:2/factorio/some-autoresearch.git
4 git@git.somenet.org:factorio/some-autoresearch.git
6 GITWEB (if public repo):
7 http://git.somenet.org/factorio/some-autoresearch.git
10 GITOLITE instance admin (send ssh-keys to):
14 RECOMMENDED CONFIGURATION
15 ----------------------------------------------------------------------
16 # Show forgotten whitespaces.
17 git config --global color.ui true
18 git config --global color.diff.whitespace red reverse
21 # remove removed branches + tags.
22 git config --global fetch.prune true
23 git config --global fetch.pruneTags true
29 git config --global branch.autosetuprebase always
30 git config --global branch.master.rebase true
31 git config --global rebase.stat true
37 # Make Git convert all the types of newline to "\n".
38 # Might break some stuff.
39 git config --global core.autocrlf true
40 ----------------------------------------------------------------------