I use Netbeans for development and have been doing my Mercurial operations on the command line even though Netbeans has a Mercurial plugin to add various Mercurial commands as GUI options.
One of the things I always do when I add or delete a file is run
hg addremove
But the Netbeans Mercurial plugin doesn't offer this as an option. The only operations it offers are:
Status
Diff
Commit
----
Resolve Conflicts
----
Show History
----
Revert
----
Mercurial Settings
So my question is whether it is necessary to run
hg addremove
I just tried deleting a file and then did
hg commit -m
and after I did a
hg status
everything seemed to be good - no output. So it seemed to delete the file without needing to run the addremove command.
I'm a little confused whether this plugin covers most of the features I will need or whether I should stick with the command line interface.