Skip to content

Instantly share code, notes, and snippets.

@pH-7
Last active October 26, 2022 00:13
Show Gist options
  • Save pH-7/4045423 to your computer and use it in GitHub Desktop.
Save pH-7/4045423 to your computer and use it in GitHub Desktop.
My ~/.gitconfig
[user]
name = Pierre-Henry Soria
email = $EMAIL_ADDRESS
[init]
defaultBranch = main
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
[alias]
st = status
ci = commit
co = checkout
br = branch
cm = commit -m
ca = commit --amend
lg = log --pretty=format:'%h %an %Cred%ar %Cgreen%s'
cob = checkout -b
bra = branch -a
cam = commit -am
last = log -1 HEAD
staged = diff --cached
unstage = reset HEAD
unstaged = diff
uncommit = reset --soft HEAD^
type = cat-file -t
dump = cat-file -p
head = !git l -1
track = checkout -t
amend = commit --amend --no-edit
showfiles = show --stat --oneline
[apply]
whitespace = warn
[diff]
color = auto
rename = copy
[pager]
color = true
[push]
default = current
[help]
autocorrect = 1
[status]
color = auto
submodule = 1
[difftool]
prompt = false
[credential]
helper = cache --timeout=3600
[core]
filemode = false
autocrlf = input
safecrlf = true
whitespace = cr-at-eol
editor = nano
[filter "lfs"]
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[merge]
tool = vscode
[mergetool "vscode"]
cmd = code --wait --merge $REMOTE $LOCAL $BASE $MERGED
[mergetool]
keepBackup = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment