add some git aliases that i use

This commit is contained in:
Spirit 👾 2024-08-19 21:43:27 -07:00 committed by GitHub
parent 33e854682f
commit 67e9efab4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,3 +11,11 @@
helper = store
[github]
user = spirit-x64
[alias]
ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate
ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat
unstage = reset --soft HEAD^
ignore = update-index --assume-unchanged
unignore = update-index --no-assume-unchanged
ignored = !git ls-files -v | grep "^[[:lower:]]"