gitで複数のファイルを一括で移動またはリネームする方法を教えてください
gitリポジトリ内の全erbファイルをhamlにリネームしたいです。(例: index.html.erb => index.html.haml)
以下のようなコマンドで一つずつリネームするのは大変です。
$ git mv app/views/pages/index.html.erb app/views/pages/index.html.haml
また、こんなコマンドが使えるかなと思ったのですが、無理でした。
$ git mv app/views/**/*.erb app/views/**/*.haml
usage: git mv [options] <source>... <destination>
-n, --dry-run dry run
-f, --force force move/rename even if target exists
-k skip move/rename errors
こういう場合はどうすればよいでしょうか?