In bash I can do find . -name jndi.properties -exec rename 's/jndi/environment/' {} \;
to recursively find all jndi.propertie files and have them renamed to environment.properties.
But git status does not recognize the mv, it shows the deletion and addition separately. How can I do recursive git mv
?