瀏覽代碼

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

Lucas Stadler 14 年之前
父節點
當前提交
a98fa896d5
共有 1 個文件被更改,包括 2 次插入1 次删除
  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]