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"