Skip to content

Instantly share code, notes, and snippets.

@tsnow
Last active August 29, 2015 14:04
Show Gist options
  • Save tsnow/062c9626bc54ed1676c1 to your computer and use it in GitHub Desktop.
Save tsnow/062c9626bc54ed1676c1 to your computer and use it in GitHub Desktop.
Tim Snowhite In Progress Branches
~/src$ find . -type d -depth 1 | while read i; do cd $i; git branch -r | while read j; do git log -n 1 --pretty=format:"$i $j %an" $j  | grep -i snowhite; done; cd ~/src; done 2>/dev/null | sed -e 's/Tim Snowhite//' -e 's,origin/,,' -e 's,^./,,' | grep -v 'deploy-'  | while read repo branch; do echo "https://github.com/ridecharge/$repo/compare/$branch"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment