Sfoglia il codice sorgente

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

Lucas Stadler 14 anni fa
parent
commit
a98fa896d5
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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]