On Tue, 2008-07-15 at 17:02 -0500, Will Fiveash wrote:
> Here's what I'm trying to do:
>
> zfs create pool/willf/hg/i386/onnv_94
> g clone -r onnv_94 /net/elpaso.eng/export/gate-hg onnv_94
> abort: destination 'onnv_94' already exists
>
> Is there a way for me to do the above?
hg init
hg pull <URL>
Not exactly equivalent because it doesn't set up the .hg/hgrc file to
identify the workspace parent, but close.
> And is it okay to use a zfs
> clone as a hg repository in which to do development?
Should just work.
- Bill