Created
March 24, 2025 13:24
-
-
Save mdailey77/48ebea8c7b5f0cb9350734e128b061b0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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] | |
email = | |
name = | |
username = | |
[web] | |
browser = google-chrome | |
[core] | |
editor = code --wait | |
[fetch] | |
prune = true | |
[alias] | |
s = status | |
co = checkout | |
cob = checkout -b | |
del = branch -D | |
br = branch | |
undo = reset HEAD~1 --mixed | |
lg = log --oneline --graph --decorate | |
res = !git reset --hard | |
done = !git push origin HEAD | |
gl = config --global -l | |
tags = tag -l | |
d = diff | |
ps = push | |
pl = pull | |
[color] | |
ui = auto | |
[color "branch"] | |
current = yellow bold | |
local = green bold | |
remote = cyan bold | |
[color "diff"] | |
meta = yellow bold | |
frag = magenta bold | |
old = red bold | |
new = green bold | |
whitespace = red reverse | |
[color "status"] | |
added = green bold | |
changed = yellow bold | |
untracked = red bold | |
[http] | |
sslVerify = false | |
[push] | |
autoSetupRemote = false | |
[credential] | |
helper = osxkeychain |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment