Skip to content

Instantly share code, notes, and snippets.

@jderusse
Created July 7, 2015 08:42
Show Gist options
  • Save jderusse/c08909dded6c4ab9f217 to your computer and use it in GitHub Desktop.
Save jderusse/c08909dded6c4ab9f217 to your computer and use it in GitHub Desktop.
My git config
[user]
name = Jérémy Derussé
email = jeremy@derusse.com
[push]
default = simple
[alias]
st = status
ci = commit
co = checkout
lg = log --graph --pretty=format:'%C(cyan)%h%Creset%C(auto)%d%Creset %s (%C(blue)%an%Creset, %Cgreen%cr%Creset)' --abbrev-commit --all
spull = !git pull && git submodule sync --recursive && git submodule update --init --recursive
spush = push --recurse-submodules=on-demand
[core]
editor = vim
excludesfile = /home/jderusse/.gitignore_global
[merge]
tool = meld
[color]
diff = auto
status = auto
branch = auto
ui = true
[mergetool]
keepBackup = false
prompt = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment