美文网首页
git branch

git branch

作者: Time_Notes | 来源:发表于2021-12-21 15:27 被阅读0次

    https://nickymeuleman.netlify.app/blog/delete-git-branches

    -To list all local branches

    git branch

    -To list all remote branches

    git branch -r

    -To list all branches (local and remote)

    git branch -a

    -List all local merged branches

    git branch --merged

    -List all local unmerged branches.

    git branch --no-merged

    -List all remote merged branches.

    git branch -r --merged

    -List all remote unmerged branches.

    git branch -r --no-merged

    相关文章

      网友评论

          本文标题:git branch

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