Skip to content

Instantly share code, notes, and snippets.

@7ochem
Created February 13, 2015 13:50
Show Gist options
  • Save 7ochem/981036f071ca89101019 to your computer and use it in GitHub Desktop.
Save 7ochem/981036f071ca89101019 to your computer and use it in GitHub Desktop.
Quickly check status of all your vendor repositories (for changes)
#!/bin/bash
find vendor/ -type d -name ".git"|sed 's/\/\.git$//'|xargs -I % sh -c 'echo "-> %";cd %; git status -su;'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment