From d30a7c7cd9d8fa3a4f695099cf61d86c74d2bbe4 Mon Sep 17 00:00:00 2001 From: git Date: Sat, 12 Jan 2019 22:41:09 +0100 Subject: [PATCH] GITOLITE.txt --- GITOLITE.txt | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/GITOLITE.txt b/GITOLITE.txt index 191da2c..e101d57 100644 --- a/GITOLITE.txt +++ b/GITOLITE.txt @@ -1,35 +1,38 @@ -REPO: -git clone ssh://git@git.somenet.org:2/irc/irpg +REPO URLs: +https://git.somenet.org/irc/irpg.git (if public repo) +git remote set-url --push origin ssh://git@git.somenet.org:2/irc/irpg.git +git@git.somenet.org:irc/irpg.git -GITWEB: -http://git.somenet.org/?p=irc/irpg.git;a=summary +GITWEB (is public repo): +http://git.somenet.org/irc/irpg.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. -- 2.43.0