Created
December 9, 2012 17:16
-
-
Save simenbrekken/4246162 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
| [core] | |
| autocrlf = input | |
| editor = subl -w | |
| excludesfile = /Users/Simen/.gitignore | |
| [user] | |
| name = Simen Brekken | |
| email = simen@unfold.no | |
| [alias] | |
| zip = !git archive --format zip -9 -v --prefix $(basename \"$(pwd)\")/ --output $(basename \"$(pwd)\")-$(git log|head -n 1|cut -c 8-18).zip | |
| co = checkout | |
| ci = commit | |
| rb = rebase --interactive | |
| l = log --pretty=oneline --abbrev-commit | |
| s = status | |
| [vae] | |
| password = | |
| username = simen | |
| [mergetool] | |
| keepBackup = false | |
| [push] | |
| default = upstream | |
| [branch] | |
| autosetuprebase = always | |
| [color] | |
| branch = auto | |
| diff = auto | |
| status = auto | |
| ui = auto | |
| [log] | |
| decorate = short |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment