Skip to content

Instantly share code, notes, and snippets.

@bgerstle
Created February 14, 2014 03:00
Show Gist options
  • Save bgerstle/8995078 to your computer and use it in GitHub Desktop.
Save bgerstle/8995078 to your computer and use it in GitHub Desktop.
`git mv` all *.{h,m} files which aren't in the "Project-X/Tests/" folder into "Classes/"
find . \( -name "*.h" -o -name "*.m" \) -not -path ./Project-X/Tests/\* -exec git mv {} Classes/ \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment