|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] problem with xenperf
To enable mercurial-quilt, add the following line to the [extensions]
section of your ~/.hgrc file:
mq=
[Sorry, pressed the 'send' key accidentally]
yes, add "mq=" to your ~/.hgrc file.
To move over to quilt, you probably want to break your patches down
into logical chunks. Make a new patch by:
$ hg qnew [patchname]
Then, make whatever edits you want; possibly, using "patch" from some
of the exported changesets from before. When you're done, type
$ hg qrefresh
This will push watever changes into the "current" patch.
$ hg qseries -v
Will show you all the patches in your series, and which ones have been
applied. qpush and qpop will push and pop one patch in the series.
"hg qpush -a" and "hg qpop -a" will push and pull all patches in the
series, respectively.
With quilt, when you want to move to a new place in the mainline
repository, or update to the newest version, you can do the following:
$ hg qpop -a
$ hg update [rev] OR hg pull ; hg update
$ hg qpush -a
The "quilt" mode of operation is especially useful if you ever intend
to submit the patches to the mailing list.
The resulting patches can be found in the .hg/patches/ directory.
Patches can be added manually by editing the 'series' file in that directory.
Is this helpful?
-George
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
|
|
|
|
|