How do you move multiple files in git? April 27, 2023 by Tarik I use bash loop: for FILE in src/*.h; do git mv $FILE include/; done