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 #1
When I SSH into my server where my Git repository is and execute git branch -l, I don’t see the master branch listed either.
Update #2
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.
It is probably failing because
1.0.0is an annotated tag. Perhaps you saw the following error message:Annotated tags have their own distinct type of object that points to the tagged commit object. Branches can not usefully point to tag objects, only commit objects. You need to “peel” the annotated tag back to commit object and push that instead.
There is another syntax that would also work in this case, but it means something slightly different if the tag object points to something other than a commit (or a tag object that points to (a tag object that points to a …) a commit).
These tag peeling syntaxes are described in git-rev-parse(1) under Specifying Revisions.