Set default pull strategy to ff-only, because git 2.27 complains if unset

Rebase won't let you pull with unstaged changes, and I rarely want to
make a merge commit
This commit is contained in:
Adam Goldsmith 2020-06-02 13:15:46 -04:00
parent 6e3df114da
commit 7a4173ee13
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
[user]
email = adam@adamgoldsmith.name
name = Adam Goldsmith
[pull]
ff = only
[push]
default = simple
[core]