Skip to content

Instantly share code, notes, and snippets.

@ChaelCodes
Last active August 21, 2025 12:37
Show Gist options
  • Save ChaelCodes/93180e70a841c11a9d4d09d983937401 to your computer and use it in GitHub Desktop.
Save ChaelCodes/93180e70a841c11a9d4d09d983937401 to your computer and use it in GitHub Desktop.
# Config Options: https://git-scm.com/docs/git-config
# Git setup: https://docs.github.com/en/free-pro-team@latest/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
# GitHub cli setup: https://github.com/cli/cli#installation
[user]
name = Rachael Wright-Munn
email = [email protected]
[branch]
sort = -committerdate
[color]
ui = always
[commit]
verbose = true
[core]
editor = code --wait
eol = lf
[diff]
algorithm = histogram
colorMoved = plain
mnemonicPrefix = true
renames = true
[fetch]
all = true
prune = true
pruneTags = true
[help]
autocorrect = prompt
[init]
defaultBranch = main
[push]
autoSetupRemote = true
default = current
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
[rerere]
enabled = true
autoupdate = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment