Correct way to use git push -f -
$ git branch master *branch1
$ git push -f
and on wrote origin/master local stale master. correct way use git push -f
?
git push -f origin branch1
this force push branch1 , not master.
$ git branch master *branch1
$ git push -f
and on wrote origin/master local stale master. correct way use git push -f
?
git push -f origin branch1
this force push branch1 , not master.
Comments
Post a Comment