Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要能够将我的本地存储库更改为特定标签,进行更改,推送更改,然后 git pull 生产服务器上的标签+更改。这就是我卡住的地方。
将本地仓库切换到特定标签
git checkout v5.86
本地仓库中的代码已更改
将标签推送到生产服务器?
我试过 git push 但上面写着“一切都是最新的”,这是错误的吗?我的更改没有推送到 Github。
如何将更新拉到另一台服务器?
我可以将更改推送到标签吗?
谢谢。
没有任何参数,git push将推送您的服务器和远程服务器上存在的每个“匹配”分支,或者git config remote.origin.push如果您以这种方式设置它,则推送所有内容。
git push
git config remote.origin.push
尝试git push tag v5.86,或git push --tags。
git push tag v5.86
git push --tags
阅读更多关于: