[forge:site-support:#2584]
The example command currently is "git branch --set-upstream master origin/master", however the --set-upstream option is deprecated:
$git branch --set-upstream master origin/master The --set-upstream flag is deprecated and will be removed. Consider using --track or --set-upstream-to Branch master set up to track remote branch master from origin. $
Referring to the "empty git repo" instructions.
Merged to master.
Looks like we actually need to drop the local branch name for the new version of this command. E.g.
git branch --set-upstream-to origin/master
otherwise you get an error.Last edit: Prefabbricati 2017-11-29
I propose to update it as :
instead of:
Refer to: http://git.661346.n2.nabble.com/ANNOUNCE-Git-v1-8-0-rc1-tc7568792.html
+1 makes sense to me
allura-fork:al/5700