Hi @leo
,
Looking at git-scm.com/docs/git-config it seems like the default push.default is simple. simple - in centralized workflow, work like upstream with an added safety to refuse to push if the upstream branchβs name is different from the local one. upstream - push the current branch back to the branch whose changes are usually integrated into the current branch (which is called @{upstream}). This mode only makes sense if you are pushing to the same repository you would normally pull from (i.e. central workflow).
So if the branch names differ the push will be refused.
Hi @leo ,
Looking at git-scm.com/docs/git-config it seems like the default
push.defaultissimple.simple- in centralized workflow, work like upstream with an added safety to refuse to push if the upstream branchβs name is different from the local one.upstream- push the current branch back to the branch whose changes are usually integrated into the current branch (which is called @{upstream}). This mode only makes sense if you are pushing to the same repository you would normally pull from (i.e. central workflow).So if the branch names differ the push will be refused.
Oh... Ok, this is new to me. Thanks for the clarification.