Parcourir la Source

~/.gitconfig: Make st and d (diff) use the current directory by default.

Lucas Stadler 14 ans auparavant
Parent
commit
a98fa896d5
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      .gitconfig

+ 2 - 1
.gitconfig

@ -6,7 +6,8 @@
6 6
[merge]
7 7
	conflictstyle = diff3
8 8
[alias]
9
	st = status --short --branch
9
	st = status --short --branch .
10
	d  = diff .
10 11
	lol = log --pretty=oneline --abbrev-commit --graph --decorate
11 12
	ba = branch -a
12 13
[format]