Skip to content

Instantly share code, notes, and snippets.

@mattmazzola
Last active November 1, 2025 23:31
Show Gist options
  • Save mattmazzola/7a6350df0a0d27a62137d14572340229 to your computer and use it in GitHub Desktop.
Save mattmazzola/7a6350df0a0d27a62137d14572340229 to your computer and use it in GitHub Desktop.
Git Config
[safe]
directory = *
[core]
editor = code --wait
autocrlf = false
[user]
name = Matthew Mazzola
email = [email protected]
[merge]
guitool = vscode
[pull]
rebase = false
[push]
autoSetupRemote = true
[fetch]
prune = true
[alias]
cl = checkout -
cb = checkout -b
cm = checkout main
bl = branch -l
sl = switch -
sc = switch -c
sm = switch main
sma = switch master
sw = switch
mom = merge origin/main
mm = merge main
moma = merge origin/master
mma = merge master
fp = fetch -p
bd = branch -D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment