Skip to content

Instantly share code, notes, and snippets.

@m3nd3s
Created November 1, 2013 16:15
Show Gist options
  • Save m3nd3s/7267755 to your computer and use it in GitHub Desktop.
Save m3nd3s/7267755 to your computer and use it in GitHub Desktop.
Git config
[user]
name = NOME
email = EMAIL
[color]
branch = auto
diff = auto
status = auto
ui = true
[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
[alias]
ci = commit
st = status
br = branch
co = checkout
df = diff
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --
who = shortlog -s --
last = rev-parse --short HEAD
[branch "master"]
remote = origin
merge = refs/heads/master
[http]
postBuffer = 524288000
[github]
user = m3nd3s
[core]
editor = vim
autocrlf = input
[push]
default = current
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment