Skip to content

Instantly share code, notes, and snippets.

@elmarcoh
Created August 19, 2015 18:10
Show Gist options
  • Save elmarcoh/dae23bf5861ab59a0f68 to your computer and use it in GitHub Desktop.
Save elmarcoh/dae23bf5861ab59a0f68 to your computer and use it in GitHub Desktop.
List number of commits that are not in develop
for b in `git branch --remote`; do echo $b `git lg origin/develop..$b|wc -l` ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment