正常开发都是使用分支提交的:

git add .
git commit -a -m "xxx"
git push

tag 与正常的分支提交不太一样:

git tag -f tagname
git push origin -f tagname 

附:gitlab上fork别人的代码,如何更新主分支最新代码