From 9870c51b49bb8228adf1a4a169c89dd1b933c2b5 Mon Sep 17 00:00:00 2001 From: Eric Turner Date: Sat, 2 Aug 2025 20:21:49 -0600 Subject: [PATCH] feat: add git configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add .gitconfig with user settings and aliases 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- git/.gitconfig | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 git/.gitconfig diff --git a/git/.gitconfig b/git/.gitconfig new file mode 100644 index 0000000..5843546 --- /dev/null +++ b/git/.gitconfig @@ -0,0 +1,27 @@ +[user] + name = Your Name + email = your.email@example.com + +[core] + editor = vim + autocrlf = input + safecrlf = true + +[alias] + st = status + co = checkout + br = branch + ci = commit + unstage = reset HEAD -- + last = log -1 HEAD + visual = !gitk + tree = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit + +[color] + ui = auto + +[push] + default = simple + +[pull] + rebase = false \ No newline at end of file