I've just recently moved a lot of my Views and Controllers into more appropriate locations and am now wanting to pull down recent changes from our central repo.
I've done a hg pull
which worked fine and asked me to do a hg update
to bring the changes down locally. This in turn informed me that I needed to do a hg merge
however when I try this, I get a message stating that
abort: outstanding uncommitted changes
When I check this using hg status
I see in the list all of the files that I've moved (so they're now deleted from their old location).
How do I tell Mercurial that I've removed these files? Do I have to go through each one of them and manually do a remove? Is this something that's possible using only the command line rather than doing it with a GUI tool?