Defining an “Active” Change Set Using Mercurial?

If you have changes A, B, C, D, E in your repo and you perform hg update -c D , how can you confirm that your repo is currently “active” with change set D? If we run hg tip or hg head , HG displays E, not D.

+6
source share
1 answer

There are several ways to find this:

Note that hg update actually changes the revision of your working copy, so you should definitely not use it.

+7
source

Source: https://habr.com/ru/post/917635/


All Articles