Set push.default to upstream

The default changed from matching to simple in git 2.0, but simple was
only introduced in git 1.7.11, and we have older gits, so I can't just
set it to that. upstream is the closest in functionality, and I think I
don't need the extra security of simple, so I'll just set it
unconditionally to upstream instead of checking the git version.
This commit is contained in:
Peter J. Holzer 2017-12-14 12:39:32 +01:00
parent 57ca79d82d
commit dfabce5c14
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@
type = cat-file -t
dump = cat-file -p
[push]
default = simple
default = upstream