Last active
September 16, 2020 22:05
-
-
Save Narvey/a2bb1e5001d0d1578f874b86afa842de to your computer and use it in GitHub Desktop.
Git configuration file for my aliases and settings.
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
[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 = [email protected] | |
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