Skip to content

Instantly share code, notes, and snippets.

@hjhart
Created November 12, 2018 20:11
Show Gist options
  • Save hjhart/c0c73281ef0b75d845259dc020c802ce to your computer and use it in GitHub Desktop.
Save hjhart/c0c73281ef0b75d845259dc020c802ce to your computer and use it in GitHub Desktop.
Check for unpushed master commits in git
git config --global alias.ahead "log origin/master..HEAD --oneline"
for i in *; do echo $i && pushd $i && git ahead 2>/dev/null && popd; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment