Last active
June 22, 2021 09:10
-
-
Save sylvchev/14283580f189e318aabefb566248ad86 to your computer and use it in GitHub Desktop.
git configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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