如何提交代码
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
网友评论