GITOLITE.txt
authorgit <git@git.somenet.org>
Sat, 12 Jan 2019 21:41:30 +0000 (22:41 +0100)
committergit <git@git.somenet.org>
Sat, 12 Jan 2019 21:41:30 +0000 (22:41 +0100)
GITOLITE.txt

index c5ec7716818eb07ddcc1c743a7e0434a78c10a08..628b4e61792b4dbc3456d25ed9c36ca33c7a83e5 100644 (file)
@@ -1,35 +1,38 @@
-REPO:
-git clone ssh://git@git.somenet.org:2/pub/jan/sysprog
+REPO URLs:
+https://git.somenet.org/pub/jan/sysprog.git (if public repo)
+git remote set-url --push origin ssh://git@git.somenet.org:2/pub/jan/sysprog.git
+git@git.somenet.org:pub/jan/sysprog.git
 
-GITWEB:
-http://git.somenet.org/?p=pub/jan/sysprog.git;a=summary
+GITWEB (is public repo):
+http://git.somenet.org/pub/jan/sysprog.git
 
-GITOLITE ROOT ADMIN (send ssh-keys to):
+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 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.
 
 
+   # 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
-  # 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.
 
 
+   # If you like colors consider adding these config options.
 git config color.ui true
 git config color.diff.whitespace red reverse
-  # If you like colors consider adding these config options.
 
 
-git config core.autocrlf input
-  # Make Git convert all the types of newline to "\n". This is especially
-  # useful, if windows and *nix users are working on the same fileset.
+  # WINDOWS USERS ONLY
+  # Make Git convert all the types of newline to "\n".
   # Might break some stuff.
+git config core.autocrlf input
 --------------------------------------------------------------------------
 AUTOGENERATED FILE.