Last active
December 28, 2015 13:39
-
-
Save linkarys/7508929 to your computer and use it in GitHub Desktop.
git configure
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
[core] | |
repositoryformatversion = 0 | |
filemode = true | |
bare = false | |
logallrefupdates = true | |
ignorecase = true | |
precomposeunicode = false | |
[color] | |
ui = auto | |
[color "branch"] | |
current = green bold | |
local = green | |
remote = cyan | |
[color "diff"] | |
meta = cyan | |
frag = magenta | |
old = magenta | |
new = green bold | |
[color "status"] | |
added = yellow | |
changed = green | |
untracked = magenta | |
[alias] | |
co = checkout | |
cf = checkout -f | |
st = status | |
br = branch | |
bra = branch -a | |
unstage = reset HEAD -- | |
cm = commit | |
cma = commit -am | |
last = log -1 HEAD | |
cf = cat-file | |
dump = cat-file -p | |
type = cat-file -t | |
ol = log --oneline | |
lg = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short | |
cb = rebase --interactive | |
[user] | |
email = [email protected] | |
name = linkarys |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment