2 https://git.somenet.org/ctf/pub/submit_bot.git (if public repo)
3 git remote set-url --push origin ssh://git@git.somenet.org:2/ctf/pub/submit_bot.git
4 git@git.somenet.org:ctf/pub/submit_bot.git
6 GITWEB (is public repo):
7 http://git.somenet.org/ctf/pub/submit_bot.git
9 GITOLITE instance admin (send ssh-keys to):
12 --------------------------------------------------------------------------
13 RECOMMENDED CLIENT CONFIGURATION:
15 # Make Git enable rebasing instead of merging on all new tracked
16 # branches in *ALL* your repos. (get rid of merge-commits when pulling)
17 # Affects only *NEW* tracked branches.
18 git config --global branch.autosetuprebase always
21 # Make Git rebase the master branch instead of merging in *ALL* your
22 # repos. (get rid of merge-commits when pulling)
23 # Useful if you didnt have branch.autosetuprebase set before cloning
24 # and want all your repos to rebase.
25 git config --global branch.master.rebase true
28 # If you like colors consider adding these config options.
29 git config color.ui true
30 git config color.diff.whitespace red reverse
34 # Make Git convert all the types of newline to "\n".
35 # Might break some stuff.
36 git config core.autocrlf input
37 --------------------------------------------------------------------------