Use a .gitconfig.local file for credentials.
David Blume

David Blume commited on 2019-01-25 23:37:59
Showing 2 changed files, with 5 additions and 0 deletions.

... ...
@@ -1,3 +1,5 @@
1
+[include]
2
+	path = ~/.gitconfig.local
1 3
 [user]
2 4
 	name = David Blume
3 5
 	email = david.blume@gmail.com
... ...
@@ -10,6 +12,7 @@
10 12
 [core]
11 13
 	editor = vim
12 14
 	excludesfile = ~/.gitignore
15
+	whitespace = trailing-space,space-before-tab,tab-in-indent
13 16
 [alias]
14 17
 	log1 = log --graph --abbrev-commit --decorate --date=short --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ad)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset)' --all
15 18
 	log2 = log --graph --abbrev-commit --decorate --date short --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%ad%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n''          %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all
... ...
@@ -51,3 +51,5 @@ cscope.files
51 51
 cscope.out
52 52
 cscope.in.out
53 53
 cscope.po.out
54
+
55
+.gitconfig.local
54 56