SyntaxFix
Write A Post
Hire A Developer
Questions
Here's how to list local branches that do not have a remote branch in origin with the same name:
git branch | sed 's|* | |' | sort > local git branch -r | sed 's|origin/||' | sort > remote comm -23 local remote