Skip to content

Instantly share code, notes, and snippets.

@Narvey
Last active September 16, 2020 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Narvey/a2bb1e5001d0d1578f874b86afa842de to your computer and use it in GitHub Desktop.
Save Narvey/a2bb1e5001d0d1578f874b86afa842de to your computer and use it in GitHub Desktop.
Git configuration file for my aliases and settings.
[branch]
autoSetupMerge = always
[alias]
st = status
ca = commit -am
br = branch
co = checkout
clr = reset HEAD
df = diff
dc = diff --cached
lg = log -p
tree = log --graph --decorate --pretty=oneline --abbrev-commit
[push]
default = matching
[user]
email = 2171161+Narvey@users.noreply.github.com
name = Narvey
#less important
[color]
ui = auto
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow bold
frag = magenta bold
old = green reverse
new = green bold
[color "status"]
added = yellow
changed = green
untracked = red
[credential]
helper = cache
[pull]
rebase = false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment