I use Mercurial to read and debug a complex project, and my project change can be divided into different file groups. For example, if I changed four files
src1.cc src1.hh src2.cc src2.hh
Apparently, I can split them into two file groups, such as the src1 group, including 'src1.cc src1.hh', and the src2 group includes 'src2.cc src2.hh'.
I am wondering if I can return a group of files with a simple command, for example, โhg revert group-name-aliasโ instead of listing all the file names of the group, which is a terrible idea if I modified many files.
Any help really appreciated!
source share