Last active
August 29, 2015 14:05
-
-
Save ellipse42-archived/fcce9a8b37c85dd433e4 to your computer and use it in GitHub Desktop.
Git Config
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
| [alias] | |
| lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit | |
| unstage = reset HEAD | |
| st = status | |
| ci = commit | |
| co = checkout | |
| [user] | |
| name = mhg | |
| email = mhg@abc.com | |
| [color] | |
| diff = auto | |
| status = auto | |
| branch = auto | |
| interactive = auto | |
| ul = true | |
| pager = true | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold | |
| frag = magenta bold | |
| old = red bold | |
| new = green bold | |
| renamelimit = 0 | |
| [color "status"] | |
| added = yellow | |
| changed = green | |
| untracked = cyan |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment