The changes regarding 'git push -u' in the previous patch version
were hurting the intention of using 'push.default'. This patch version
fixes that.
Argumentless 'git push -u' sets the default remote as '<repository>'.
'<refspec>' depends on the 'push.default' configuration. For
'push.default'=matching, it pushes refs to those branches that it
should and sets them as the upstream of their respective local
branches. For all other values of 'push.default', it uses the
current branch for the refspec.
'<repository>' value depends on 'branch.*.remote' and 'remote.pushDefault'
(if 'branch.*.remote' not found). If none of them are set then it
defaults to 'origin'.
Abhradeep Chakraborty (1):
push: make '-u' have default arguments
Documentation/git-push.txt | 10 ++++
builtin/push.c | 11 +++-
t/t5523-push-upstream.sh | 114 +++++++++++++++++++++++++++++++++++++
3 files changed, 133 insertions(+), 2 deletions(-)
--
2.17.1