git操作

作者: bgod_like | 来源:发表于2020-08-12 14:31 被阅读0次

    更新代码

    git pull

    更新远程分支

    git fetch origin --prune

    切换tag 并更改

    git tag

    git checkout -b 分支名字 tag名字

    \color{red}{eg:} 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 .

    相关文章

      网友评论

          本文标题:git操作

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