git

作者: 步履不停的Suunny | 来源:发表于2018-01-30 10:51 被阅读0次

如何提交代码

1、修改文件  
2、  切换分支:
    git checkout master
3、提交代码: 
    git add .  
    git commint -m"提交说明"  
    git push origin master  

如何提交 打tag

1、选择当前需要打tag的分支,    假设需要master分支
    git checkout master
2、选择要打的tag名称和commit号 afsdafefwefa,并打tag
    git tag -a 名称 commit号
    git tag -a v1.0.1 afsdafefwefa
3、提交tag
    git push origin v1.0.1
4、查看提交的tag
    git show v1.0.1

相关文章

网友评论

      本文标题:git

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