标签:-- tags stash pop add stat 版本号 sof 修改
--提交代码
git push origin HEAD:refs/for/dev-safe%r=xxx.xx@xxx.xx.xx
回退已经提交的代码: git reset --soft HEAD~
git stash
git pull
git stash pop
代码没审批之前追加修改和提交
git status
git add .
git commit --amend
git push origin HEAD:refs/for/dev-safe%r=xxx.xx@xxx.xx.xx
打tag
git tag 版本号
git push origin 版本号
删除tag
git tag -d 版本号
git push origin :refs/tags/版本号
标签:-- tags stash pop add stat 版本号 sof 修改
原文地址:https://www.cnblogs.com/jtcr/p/13053733.html