Skip to content

Instantly share code, notes, and snippets.

@llaumgui
Created September 3, 2014 11:49
Show Gist options
  • Save llaumgui/3038435c6733b9cc302e to your computer and use it in GitHub Desktop.
Save llaumgui/3038435c6733b9cc302e to your computer and use it in GitHub Desktop.
My git configuration.
[user]
email = guillaume@kulakowski.fr
name = Guillaume Kulakowski
[color]
ui = auto
[alias]
st = status
ci = commit
lg = log --graph --pretty=tformat:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%an %cr)%Creset'
[core]
whitespace = -trailing-space
[diff]
mnemonicPrefix = true
wordRegex = .
[fetch]
# recurseSubmodules = on-demand
[grep]
extendedRegexp = true
[log]
abbrevCommit = true
decorate = true
[merge]
conflictStyle = diff3
[mergetool]
keepBackup = false
keepTemporaries = false
prompt = false
[pull]
# This is GREAT. when you know what you're doing and are careful
# not to pull --no-rebase over a local line containing a true merge.
# rebase = true
[push]
# default = upstream
[rerere]
# If, like me, you like rerere, decomment these
# autoupdate = true
# enabled = true
[status]
submoduleSummary = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment