tags:

views:

69

answers:

3

I know that git provides the 'git rm' and 'git mv' to remove/move files or directories. But, I can't see the practical use case for this.

Normally, I just mv or rm the files or whatever in the command line, and after I'm done with all the necessary actions, I can just run 'git add -u' and 'git add .', as I asked and got answers in here.

Am I missing something? Are there any cases that only 'git rm' and 'git mv' capable of?

+1  A: 

you could do it the way you said, but it sounds like it would be simpler to use git rm and git mv as it's a one-step process.

GSto
+2  A: 

git mv and git rm are about updating directly the index.

While direct working tree move or delete won't affect immediately the index.
The GitFaq does present git mv as:

just a convenience.
The effect is indistinguishable from removing the file and adding another with different name and the same content.

VonC
+1; convenience is certainly a practical use case.
Jefromi
+2  A: 

git rm and git mv allows you to be more specific/granular about what you're doing. If you've deleted two directories and want to split up those deletions between two commits, you can use git rm to remove only one directory from the staging area, rather than getting them both via git -u

bdukes