Explorar el Código

~/.gitconfig: Display TODOs and FIXMEs when running `git st`

Lu Stadler %!s(int64=5) %!d(string=hace) años
padre
commit
40c9cc212a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      .gitconfig

+ 1 - 1
.gitconfig

@ -6,7 +6,7 @@
6 6
[merge]
7 7
	conflictstyle = diff3
8 8
[alias]
9
	st = status --short --branch .
9
	st = "!st() { git status --short --branch . && (git grep -E --color 'TODO|FIXME' -- :^Makefile || true) }; st"
10 10
	d  = diff .
11 11
	l10 = log -n10
12 12
	lol = log --pretty=oneline --abbrev-commit --graph --decorate