Objective: Want to move files (multiple files) from 1 directory to another directory in a project.
For example, consider the below folder structure:
Project/TRUNK/
so the files like abc.java, xyz.java and Hello.java are in the directory:
Project/abc.java
Project/xyz.java
Project/Hello.java
Practically there are 100 files present in the Project directory. Want to move the files to the TRUNK directory.
I tried to use:
cd Project
git mv abc.java TRUNK
but that moves files one by one. Any suggestion on a git command where the files can be moved at once, will be very helpful.