|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] problem with xenperf
I take it to mean, you have made modifications since that changeset?
Are you committing these changes to mercurial, or not?
If you have uncommitted changes you can do this:
$ hg diff > /tmp/hgdiff
$ hg update -C [revision]
$ patch -p1 < /tmp/hgdiff
If you have committed changes, I suppose you could export all of those:
$ hg export [revision 1] > /tmp/revision1
$ hg export [revision 2] > /tmp/revision2
...
$ hg update -C [revision]
$ for I in /tmp/revision* ; do hg import $I ; done
$ hg update
Or alternately, you could start using hg quilt. Quilt will allow you
to keep a "series" of patches on top of the development tree. When
you want to move from one version fo the repository to another, you
simply "pop" all the patches in the series off, move to that version,
and "push" all the patches back on. (See instructions below.)
To enable mercurial-quilt, add the following line to the [extensions]
section of your ~/.hgrc file:
mq=
On 9/21/06, Apparao, Padmashree K <padmashree.k.apparao@xxxxxxxxx> wrote:
Hi,
I have made extensive modifications to the source code in my repository. How
can I revert to an older changeset but keeping my modifications
Thanks-Padma
________________________________
From: Keir Fraser [mailto:Keir.Fraser@xxxxxxxxxxxx]
Sent: Thursday, September 21, 2006 2:57 PM
To: Apparao, Padmashree K; xen-devel@xxxxxxxxxxxxxxxxxxx
Subject: Re: [Xen-devel] problem with xenperf
Changeset 11256:9091331dfb353
-- Keir
On 21/9/06 10:57 pm, "Apparao, Padmashree K"
<padmashree.k.apparao@xxxxxxxxx> wrote:
Would it be possible to revert to a version before the domctl/sysctl. If so,
what changeset should I go back to.
Thanks
- Padma
-
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|