I want to force push, for example, my tag 1.0.0 to my remote master branch.
I'm now doing the following:
git push production +1.0.0:master
I want to force the push because all I care about is that the code inside the 1.0.0 tag is pushed to the master branch on the remote repository.
What am I doing wrong?
Update:
After running git tag -l from inside the remote Git repository, I see that master is listed, meaning that when I ran the following:
git push production 1.0.0:master
It actually pushed the tag and created a tag named master rather than a new branch.
I want to basically push the contents of the tag 1.0.0 into the master branch of the remote Git repository.