Last active
August 21, 2025 12:37
-
-
Save ChaelCodes/93180e70a841c11a9d4d09d983937401 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
# 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