Skip to content

Instantly share code, notes, and snippets.

@CodeMan99
Last active February 6, 2024 04:47
Show Gist options
  • Save CodeMan99/15036168c45079ca4f245c65ba166823 to your computer and use it in GitHub Desktop.
Save CodeMan99/15036168c45079ca4f245c65ba166823 to your computer and use it in GitHub Desktop.
My git config --global --list
[alias]
can = commit --amend --no-edit --no-verify
l = branch -vv
s = status --short --branch
u = remote update
whatadded = log --diff-filter=A
m = merge
[am]
threeway = true
[color]
ui = true
[core]
abbrev = 12
autocrlf = input
editor = nano
[fetch]
prune = true
[grep]
linenumber = true
patterntype = extended
[init]
defaultbranch = main
[interactive]
singlekey = true
[merge]
defaulttoupstream = true
[push]
default = matching
[rebase]
autosquash = true
autostash = true
stat = true
[rerere]
enabled = true
alias.can=commit --amend --no-edit --no-verify
alias.d=diff
alias.exec=!exec
alias.l=branch -vv
alias.m=merge
alias.root=!pwd
alias.s=status --branch --short
alias.u=remote update
alias.whatadded=log --diff-filter=A
am.threeway=true
color.ui=true
core.abbrev=12
core.autocrlf=input
core.editor=nano
fetch.prune=true
grep.linenumber=true
grep.patterntype=extended
init.defaultbranch=main
interactive.singlekey=true
merge.defaulttoupstream=true
push.default=matching
rebase.autosquash=true
rebase.autostash=true
rebase.stat=true
rerere.enabled=true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment