Given the set of Mercury changes 123, how can you see the summary, user, and date associated with the set of changes? It turned out that the hg log option exists, but it is not visible.
hg log
Have you tried hg log -r 123 ?
hg log -r 123
you can also try Mercurial Templates to get only the result you need. Several keywords are supported, but in your example this command will work:
hg log -r 123 --template '{author}\n{date}\n{desc}\n'
Source: https://habr.com/ru/post/1336466/More articles:Can someone give me a good guide on migrating from C # to Java? - javaPayPal Web Payment Standard: force the creation of a PayPal account now? - paypalHow to avoid SynchronizationLockException? - multithreadingExtended properties not in Visual Studio DB projects? - sql-server-2008What are BASE, LOCAL, REMOTE and cppMerged files? - gitHow to find the number of Hamiltonian cycles that do not use forbidden edges? - algorithmTransparent JPanel over Canvas (VLCJ) - javaAdd transparent JPanel to AWT component to draw - javaRegister javascript inside User Control using C # - javascriptDate formatting in jquery datepicker - jqueryAll Articles