SyntaxFix
Write A Post
Hire A Developer
Questions
git branch -vv | grep 'BRANCH_NAME'
git branch -vv : This part will show all local branches along with their upstream branch .
git branch -vv
grep 'BRANCH_NAME' : It will filter the current branch from the branch list.
grep 'BRANCH_NAME'