diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-19 17:51:43 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-05-19 17:51:43 +0300 |
commit | 80616cb93b5470ab39e22cc8b0ad219b789ce49c (patch) | |
tree | c2e2c7c205aa53f4b3e0826161df7af792a59a3b | |
parent | add sums_remove_missing (diff) | |
download | linux-home-80616cb93b5470ab39e22cc8b0ad219b789ce49c.tar.gz linux-home-80616cb93b5470ab39e22cc8b0ad219b789ce49c.zip |
.gitconfig: add alias.ll, alias.lll
-rw-r--r-- | %HOME%/.gitconfig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/%HOME%/.gitconfig b/%HOME%/.gitconfig index 59bf09c..24c13cc 100644 --- a/%HOME%/.gitconfig +++ b/%HOME%/.gitconfig @@ -25,6 +25,9 @@ clean-ignored = clean -fdX clean-unknown = clean -fd l = log --oneline + # This is awesome: http://stackoverflow.com/a/1838938/514684 + ll = log --graph --full-history --all --pretty=format:"%h%x09%d%x20%s" + lll = log --graph --full-history --all --color --pretty=tformat:"%x1b[31m%h%x09%x1b[32m%d%x1b[0m%x20%s%x20%x1b[33m(%an)%x1b[0m" wdiff = diff --word-diff xx = update-index --add --chmod=+x [fetch] |