Open main menu

CDOT Wiki β

Changes

User:Minooz/Mercurial

302 bytes added, 15:59, 27 September 2010
no edit summary
#Mercurial uses revision numbers purely as a convenient shorthand. If you need to discuss a changeset with someone, or make a record of a changeset for some other reason (for example, in a bug report), use the hexadecimal identifier.
#Some changesets, have a tag field. A ''tag'' is another way to identify a changeset, by giving it an easy-to-remember name. ''tag: tip''
#To get the changeset id of the tipmost changeset of a remote repository you can do: When it changes, you have new changesets in the remote repository.<ref>http://mercurial.selenic.com/wiki/FAQ#FAQ.2BAC8-CommonProblems.How_can_I_find_out_if_there_are_new_changesets_in_a_remote_repository.3F</ref>
<source lang=perl>
> hg id -i -r tip http://www.selenic.com/repo/hello
82e55d328c8c
</source>
 
 
 
 
==References==
#http://mercurial.selenic.com/wiki/FAQ#FAQ.2BAC8-CommonProblems.How_can_I_find_out_if_there_are_new_changesets_in_a_remote_repository.3F
1
edit