Skip to content

Instantly share code, notes, and snippets.

@linkarys
Last active December 28, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linkarys/7508929 to your computer and use it in GitHub Desktop.
Save linkarys/7508929 to your computer and use it in GitHub Desktop.
git configure
[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 = linkarys@gmail.com
name = linkarys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment