diff options
author | William Carroll <wpcarro@gmail.com> | 2017-09-15T15·54-0400 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2017-09-15T15·59-0400 |
commit | ea1068689322a1f068d81abf1677a429e545fd8a (patch) | |
tree | dac400fb0be0fa4b824a844234cb91657c102bce /configs/shared/.gitconfig | |
parent | 6bb4d8f0434af037fe54e159ea9672eb713ad04f (diff) |
Support additional git aliases
Diffstat (limited to 'configs/shared/.gitconfig')
-rw-r--r-- | configs/shared/.gitconfig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configs/shared/.gitconfig b/configs/shared/.gitconfig index cd33cfa01c99..8d62d1e610c3 100644 --- a/configs/shared/.gitconfig +++ b/configs/shared/.gitconfig @@ -4,9 +4,10 @@ signingkey = C7A53CC58D3B1F8C [alias] recent = for-each-ref --count=10 --sort=-committerdate refs/heads/ --format=\"%(refname:short)\" - today = log --since=00:00:00 --all --no-merges --oneline --author=\"$(git config --get user.email)\" + today = ! git log --date=relative --since=00:00:00 --all --no-merges --oneline --author=\"$(git config --get user.email)\" changed-files = conflicts = diff --name-only --diff-filter=U + yday = ! git log --name-only --since=yesterday.midnight --until=today.midnight --author=\"$(git config --get user.email)\" [commit] gpgsign = true [gpg] @@ -17,3 +18,4 @@ default = current [rebase] autosquash = true + autostash = true |