Created
January 5, 2012 13:06
-
-
Save memuller/1565185 to your computer and use it in GitHub Desktop.
My sample .gitconfig file, with some customizations.
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
| [color] | |
| ui = true | |
| status = auto | |
| branch = auto | |
| pager = true | |
| diff = auto | |
| [color "branch"] | |
| current = yellow reverse | |
| local = yellow | |
| remote = green | |
| [color "diff"] | |
| meta = yellow bold | |
| frag = magenta bold | |
| old = red bold | |
| new = green bold | |
| [color "status"] | |
| added = yellow | |
| changed = green | |
| untracked = cyan | |
| [core] | |
| pager = less -FRSX | |
| whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| excludesfile = ~/.gitignore | |
| [user] | |
| name = Matheus E. Muller | |
| email=hello@memuller.com | |
| [github] | |
| user = memuller | |
| token = censored | |
| [giggle] | |
| compact-mode = false | |
| main-window-maximized = false | |
| main-window-geometry = 1178x875+1354+56 | |
| [cola] | |
| savewindowsettings = true | |
| geometry = 936x485+296,75 | |
| [alias] | |
| st = status | |
| ci = commit | |
| cia = commit -a | |
| cim = commit -m | |
| ciam = commit -a -m | |
| cii = commit --interactive | |
| co = checkout | |
| br = branch | |
| pl = pull | |
| ps = push | |
| pso = push origin master | |
| psa = push --all | |
| df = diff | |
| lg = log --pretty=oneline | |
| sa = stash apply | |
| ss = stash create | |
| [merge] | |
| summary = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
WOW!