美文网首页
给git中项目打tags

给git中项目打tags

作者: _Struggle_ | 来源:发表于2018-07-31 14:40 被阅读0次

    1. [] git tag 处理 添加v1.0

       1. 获取commit: git log

       2. 给指定的commit打Tag:git tag -a v1.0 9caa751 -m "v1.0版本"

       3. 提交tags:git push origin –tags # 将本地所有Tag一次性提交到git服务器

          报错: error: src refspec –tags does not match any.

                error: failed to push some refs to 'https**github.com/***/code' 

       4. 提交单个tag:git push origin v1.0     => 操作成功

    最终:

    相关文章

      网友评论

          本文标题:给git中项目打tags

          本文链接:https://www.haomeiwen.com/subject/zxhhvftx.html