From ed3c1599c596e6485737a7d04c10c83ad918ddff Mon Sep 17 00:00:00 2001 From: "Bradan J. Wolbeck" Date: Tue, 16 Jun 2026 23:44:52 -0600 Subject: [PATCH] feat(git): add managed gitconfig --- git/gitconfig | 17 +++++++++++++++++ install.sh | 1 + 2 files changed, 18 insertions(+) create mode 100644 git/gitconfig diff --git a/git/gitconfig b/git/gitconfig new file mode 100644 index 0000000..b21300b --- /dev/null +++ b/git/gitconfig @@ -0,0 +1,17 @@ +[user] + name = Bradan J. Wolbeck + email = bwolbeck@compaqdisc.com +[init] + defaultBranch = devel +[alias] + st = status --short + co = checkout + br = branch + ci = commit + lo = log --oneline --graph --decorate --all +[pull] + ff = only +[fetch] + prune = true +[push] + autoSetupRemote = true diff --git a/install.sh b/install.sh index 3ac020e..6a4701d 100755 --- a/install.sh +++ b/install.sh @@ -38,3 +38,4 @@ link_file() { } link_file "$DOTFILES/bash/bashrc" "$HOME/.bashrc" +link_file "$DOTFILES/git/gitconfig" "$HOME/.gitconfig"