mercurial - Working directory history -
say have repository 5 changesets.
i run hg update 1
update working directory changeset 1.
run hg update 3
update working directory changeset 3.
run hg update 5
update working directory changeset 5.
at point, there command can run show me history of previous working directory changesets? example, command hg updatelog
return following:
changeset 5: 2013-05-21 16:46 changeset 3: 2013-05-21 16:08 changeset 1: 2013-05-18 08:32
i'm interested in previous changeset, full history great too. local history since different every user instance of repository.
in mercurial 2.6 there blackbox extension. running:
hg blackbox | grep update
contains information looking for.
it returns like:
2013/05/22 10:02:48 user> update -r1 2013/05/22 10:02:48 user> update exited false after 0.09 seconds 2013/05/22 10:02:52 user> update -r0 2013/05/22 10:02:52 user> update exited false after 0.08 seconds
Comments
Post a Comment