git pull tag
git push tag
git push tag to remote
Git查看、删除、重命名远程分支和tag | zrong’s blog
Push a tag to a remote repository using Git? – Stack Overflow
git clone – Download a specific tag with Git – Stack Overflow
Git 常用命令详解(二) – IT-Homer – 博客频道 – CSDN.NET
【总结】
去:
<code>licrifandeMacBook-Pro:iOS-Client crifan$ git tag -a remote_push -m "support remote push for app runing active/background/not running(killed)" licrifandeMacBook-Pro:iOS-Client crifan$ git push --tags Counting objects: 1, done. Writing objects: 100% (1/1), 197 bytes | 0 bytes/s, done. Total 1 (delta 0), reused 0 (delta 0) To https://git.oschina.net/windoze/iOS-Client.git * [new tag] remote_push -> remote_push licrifandeMacBook-Pro:iOS-Client crifan$ </code>
和:
<code>licrifandeMacBook-Pro:iOS-Client crifan$ git tag -a v1.0.0_1 -m "has package and upload JianDao to App Store" licrifandeMacBook-Pro:iOS-Client crifan$ git push --tags Counting objects: 1, done. Writing objects: 100% (1/1), 181 bytes | 0 bytes/s, done. Total 1 (delta 0), reused 0 (delta 0) To https://git.oschina.net/windoze/iOS-Client.git * [new tag] v1.0.0_1 -> v1.0.0_1 licrifandeMacBook-Pro:iOS-Client crifan$ </code>
转载请注明:在路上 » [已解决]git中创建和上传tag