Git push -f vs. +

Viewed 8659

What is the difference between doing:

 git push -f origin my-branch:my-branch

and

 git push origin +my-branch:my-branch

?

1 Answers
Related