I have added 4 patches to my workspace.
While creating these patches, I had used qnew -m "<commit-message>". Now I noticed that I have not given proper commit message. How to modify all the commit messages?
I tried few things:
$ hg ci;
abort: cannot commit over an applied mq patch
$ hg qci
abort: no queue repository
You should not use mq anymore. Instead, use histedit, commit --amend or rebase. See this post.