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.
hg update -c D
hg tip
hg head
There are several ways to find this:
hg summary
hg identify
hg log -r .
Note that hg update actually changes the revision of your working copy, so you should definitely not use it.
hg update
Source: https://habr.com/ru/post/917635/More articles:firefox javascript return false in href redirects the browser and displays false - javascriptCreating an SD image without root privileges - linuxjquery.each only works with the first element - jqueryaccount in LEFT ENTRY AND WHERE - sqlWhy should the operator "=" R not be used in functions? - assignment-operatorProtecting against SQL injection in python - securityUsing VARCHAR or TEXT as the default string display in OpenJPA - postgresqlHow to get JAXB object namespace - javaWeb application libraries are empty in Eclipse - "jars" not found - javaCanvas and DOM - What is the most efficient way to display images in HTML5? - performanceAll Articles