| From | Sent On | Attachments |
|---|---|---|
| Adrian Buehlmann | Oct 19, 2009 2:53 pm | |
| Greg Ward | Oct 20, 2009 1:52 pm | |
| Adrian Buehlmann | Oct 20, 2009 3:24 pm | |
| Matt Mackall | Oct 20, 2009 3:31 pm | |
| Adrian Buehlmann | Oct 20, 2009 4:01 pm | |
| Greg Ward | Oct 20, 2009 5:00 pm | |
| Adrian Buehlmann | Oct 21, 2009 1:08 am | |
| Peter Arrenbrecht | Oct 21, 2009 1:12 am | |
| Peter Arrenbrecht | Oct 21, 2009 1:16 am | |
| Adrian Buehlmann | Oct 21, 2009 2:02 am | |
| Matt Mackall | Oct 21, 2009 10:34 am | |
| Adrian Buehlmann | Oct 21, 2009 10:58 am | |
| John Coomes | Oct 21, 2009 12:41 pm | |
| Matt Mackall | Oct 21, 2009 2:14 pm |
| Subject: | Re: [PATCH] clone: update to branch of parent for local source repos by default | |
|---|---|---|
| From: | Matt Mackall (mp...@selenic.com) | |
| Date: | Oct 21, 2009 10:34:39 am | |
| List: | com.selenic.mercurial-devel | |
On Wed, 2009-10-21 at 11:03 +0200, Adrian Buehlmann wrote:
On 21.10.2009 10:17, Peter Arrenbrecht wrote:
On Wed, Oct 21, 2009 at 10:09 AM, Adrian Buehlmann <adr...@cadifra.com> wrote:
--source-branch sounds good
(--source-branch could even be specified in [defaults], provided mercurial would gracefully disregard it without moaning if it had been specified for a non local source repo.)
My plan for --source-branch was to do the same as
hg clone -u <branch of src's parent> src dest
would do.
That aside, we need 'clone -u' for completeness/versatility's sake. We should implement that first and see if it has a chance to make it into 1.4. Matt's messages seem to hint at that.
I guess `hg clone -u . src dest` should cover most scenarios where people would have wanted --source-branch.
Excellent.
So . is in scope. Neat.
Compare existing:
$ hg -R thg-stable par changeset: 3536:cd50b769e235 branch: stable tag: 0.8.3 user: Steve Borho <ste...@borho.org> date: Tue Oct 06 22:07:28 2009 -0500 summary: hgtk: correct arguments to dispatch() when launching qct
$ hg clone -r . thg-stable thg-stable-bug1234 requesting all changes adding changesets adding manifests adding file changes added 3537 changesets with 5456 changes to 522 files updating to branch stable 297 files updated, 0 files merged, 0 files removed, 0 files unresolved
Planned (faking output):
$ hg clone -u . thg-stable thg-stable-bug1235 updating to branch stable 297 files updated, 0 files merged, 0 files removed, 0 files unresolved
For folks who want to put "-u ." into [defaults], we should make sure that -U still disables it.
Good point.
-U should gracefully and silently override -u without mercurial moaning at it (or at least not moan by default, i.e. without --verbose).
Disagree. Again, this is one of the fundamental problems with defaults: once you've set a default, there's no way to bypass it. Don't use 'em. And please don't suggest them to other people. Instead, make a new command:
[alias] wclone = clone -u .
-- http://selenic.com : development and support for Mercurial and Linux
_______________________________________________ Mercurial-devel mailing list Merc...@selenic.com http://selenic.com/mailman/listinfo/mercurial-devel





