Let's say I have the current status:

M File1.cs
M File2.cs
M File3.cs
! File4.cs
! File5.cs
! File6.cs

How do I bulk remove files 4, 5, 6 (!) from the next commit?

At the moment, I am just removing them manually before committing, like such:

hg remove File4.cs
hg remove File5.cs
hg remove File6.cs

But is there a way to remove them all at one go ?

link|improve this question

1  
feedback

1 Answer

up vote 12 down vote accepted

Run hg addremove

link|improve this answer
5  
remove --after is probably better (doesn't add files) – tonfa Jul 24 '10 at 23:04
good point. I voted for close on the dupe, but you should add that answer anyway. – Ry4an Jul 25 '10 at 3:21
I agree with Ry4an, thanks tonfa. – Tovi7 Oct 19 '11 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.