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 => 操作成功
最终:
网友评论