From 575c738135a2d391c194d2a221c07d32c59a955e Mon Sep 17 00:00:00 2001
From: git <git@git.somenet.org>
Date: Fri, 23 Oct 2020 17:51:44 +0200
Subject: [PATCH] GITOLITE.txt

---
 GITOLITE.txt | 41 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 41 insertions(+)
 create mode 100644 GITOLITE.txt

diff --git a/GITOLITE.txt b/GITOLITE.txt
new file mode 100644
index 0000000..d02d0fe
--- /dev/null
+++ b/GITOLITE.txt
@@ -0,0 +1,41 @@
+REPO URLs:
+https://git.somenet.org/pub/jan/netsec2.git (if public repo)
+git remote set-url --push origin ssh://git@git.somenet.org:2/pub/jan/netsec2.git
+git@git.somenet.org:pub/jan/netsec2.git
+
+GITWEB (if public repo):
+http://git.somenet.org/pub/jan/netsec2.git
+
+
+GITOLITE instance admin (send ssh-keys to):
+someone@somenet.org
+
+
+RECOMMENDED CONFIGURATION
+----------------------------------------------------------------------
+    # Show forgotten whitespaces.
+git config --global color.ui true
+git config --global 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 branch.master.rebase true
+git config --global rebase.stat true
+
+
+#################
+# WINDOWS USERS #
+#################
+    # Make Git convert all the types of newline to "\n".
+    # Might break some stuff.
+git config --global core.autocrlf true
+----------------------------------------------------------------------
+AUTOGENERATED FILE.
-- 
2.43.0