From e93090ba516832580b419228de83706a25665603 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Thu, 9 Oct 2025 21:36:19 -0400 Subject: [PATCH] added git config --- dot_config/git/config | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 dot_config/git/config diff --git a/dot_config/git/config b/dot_config/git/config new file mode 100644 index 0000000..6087f99 --- /dev/null +++ b/dot_config/git/config @@ -0,0 +1,23 @@ +[init] + defaultBranch = main + +[author] + email = tyler@tylermayoff.com + name = Tyler Mayoff +[user] + email = tyler@tylermayoff.com + name = Tyler Mayoff +[core] + excludesFile = ~/.config/git/gitignore +[merge] + tool = vscode +[mergetool "vscode"] + cmd = code --wait --merge $REMOTE $LOCAL $BASE $MERGED +[diff] + tool = vscode +[difftool "vscode"] + cmd = code --wait --diff $LOCAL $REMOTE +[pull] + rebase = true +[push] + autoSetupRemote = true