Set default for rebase to false.
dblume

dblume commited on 2021-10-02 00:33:33
Showing 1 changed files, with 3 additions and 1 deletions.

... ...
@@ -1,7 +1,7 @@
1 1
 [include]
2 2
 	path = ~/.gitconfig.local
3 3
 [user]
4
-	name = David Blume
4
+	name = dblume
5 5
 	email = david.blume@gmail.com
6 6
 [diff]
7 7
 	tool = vimdiff
... ...
@@ -17,3 +17,5 @@
17 17
 [alias]
18 18
 	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
19 19
 	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
20
+[pull]
21
+	rebase = false
20 22