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
网友评论