Created
August 31, 2012 20:45
-
-
Save michal-lipski/3558741 to your computer and use it in GitHub Desktop.
.gitconfig
This file contains hidden or 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] | |
| name = Michal Lipski | |
| email = kiwaczki_@gmail.com | |
| [color] | |
| diff = auto | |
| status = auto | |
| branch = auto | |
| interactive = auto | |
| ui = always | |
| [alias] | |
| st = status -sb | |
| ci = commit | |
| cim = commit -m | |
| co = checkout | |
| br = branch -v | |
| rm = remote -v | |
| bra = branch -a | |
| aa = add --all | |
| dh = diff HEAD^ | |
| puoh = push -u origin HEAD | |
| rs = reset --soft HEAD^ | |
| rh = reset --hard HEAD^ | |
| m = merge --no-ff --no-commit | |
| div = divergence | |
| head = !git log -1 | |
| lo = !git log -20 | |
| loa = !git lo --all | |
| [format] | |
| pretty=format:%C(yellow)%h%Creset -%C(red)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset | |
| [push] | |
| default = upstream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment