更新代码
git pull
更新远程分支
git fetch origin --prune
切换tag 并更改
git tag
git checkout -b 分支名字 tag名字
git checkout -b V1.0 tagV1.1
本地分支 删除 查看(git tag)
git tag -d 分支名字
远程分支 删除 查看(git show-ref --tag)
git push origin :refs/tags/分支名字
清除缓存
git rm -r --cached .
网友评论