Skip to content

Instantly share code, notes, and snippets.

@sylvchev
Last active June 22, 2021 09:10
Show Gist options
  • Save sylvchev/14283580f189e318aabefb566248ad86 to your computer and use it in GitHub Desktop.
Save sylvchev/14283580f189e318aabefb566248ad86 to your computer and use it in GitHub Desktop.
git configuration
[user]
name = Sylvain Chevallier
email = [email protected]
[credential]
helper = cache --timeout=10000000
[github]
user = sylvchev
[push]
default = matching
[core]
pager = less
editor = nano
[alias]
st = status
ci = commit
br = branch
co = checkout
lgr = log --graph --date-order --pretty=format:'%Cblue%h %Cgreen%ci %Cred%an, %Cblue%m %Creset%s %Cred%d'
up = "!git remote update -p; git merge --ff-only @{u}"
diffword = diff --color-words
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment