Skip to content

Instantly share code, notes, and snippets.

@jespada
Created April 11, 2014 12:09
Show Gist options
  • Save jespada/10463053 to your computer and use it in GitHub Desktop.
Save jespada/10463053 to your computer and use it in GitHub Desktop.
git global config
[user]
email = espada.jorge@gmail.com
name = Jorge Espada
[push]
default = current
[color]
ui = auto
branch = auto
diff = auto
interactive = auto
status = auto
[merge]
ff = no
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(bold blue)<%an>%Creset' --abbrev-commit
@javierbertoli
Copy link

[user]
        name = Javier Bértoli
        email = javier@netmanagers.com.ar
[alias]
    st  = status
    ci  = commit
    br  = branch
    rem = rebase master
    co  = checkout
    df  = diff
    wc  = whatchanged
    sl  = shortlog
    l   = log --abbrev-commit
    ln  = log --abbrev-commit --name-only
    sms = submodule status
    smu = submodule update
[color]
        ui = always
[diff]
    tool = meld
[merge]
    tool = meld
#    ff = false
[apply]
    whitespace = fix
[log]
    date = iso
    decorate = short
[format]
    pretty = medium
[pack]
    threads = 1
[core]
    whitespace   = trailing-space,space-before-tab
    excludesfile = /home/javier/.gitexcludesfile
    autocrlf = input
[push]
        default = simple
[credential]
        helper = cache

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment