Skip to content

Instantly share code, notes, and snippets.

@MaciekBaron
Created April 1, 2014 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MaciekBaron/9918081 to your computer and use it in GitHub Desktop.
Save MaciekBaron/9918081 to your computer and use it in GitHub Desktop.
Renaming all files in Git to lowercase
for f in *; do git mv -f "$f" "`echo $f | tr "[:upper:]" "[:lower:]"`"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment