Created
December 21, 2018 02:28
-
-
Save johnleider/48ff25d25b97956a23a7ab2d14e6a15b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
email = john.smith@gmail.com | |
name = John Smith | |
[push] | |
default = simple | |
[alias] | |
co = checkout | |
ci = commit | |
czp = cz && git pu | |
st = status | |
br = branch | |
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short | |
type = cat-file -t | |
dump = cat-file -p | |
pu = push | |
lg = log --graph --decorate --oneline --branches | |
pn = log --oneline --decorate --graph | |
chlogm = !sh -c 'git log $1...$2 --pretty=format:\"%s [view commit](http://github.com/$3/$4/commit/%H) \"' - | |
[core] | |
autocrlf = input | |
fileMode = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🤔 What does
cz
in line 9 mean? I guess it's a typo forci
?