feat(git): add managed gitconfig

This commit is contained in:
Bradan J. Wolbeck 2026-06-16 23:44:52 -06:00
parent 3e3a5e4883
commit ed3c1599c5
2 changed files with 18 additions and 0 deletions

17
git/gitconfig Normal file
View file

@ -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

View file

@ -38,3 +38,4 @@ link_file() {
} }
link_file "$DOTFILES/bash/bashrc" "$HOME/.bashrc" link_file "$DOTFILES/bash/bashrc" "$HOME/.bashrc"
link_file "$DOTFILES/git/gitconfig" "$HOME/.gitconfig"