From: Simon Hausmann <simon@lst.de>
To: Tor Arvid Lund <torarvid@gmail.com>
Cc: git@vger.kernel.org, Junio C Hamano <gitster@pobox.com>
Subject: Re: [PATCH] git-p4: Fix checkout bug when using --import-local.
Date: Thu, 28 Aug 2008 09:29:06 +0200 [thread overview]
Message-ID: <200808280929.07898.simon@lst.de> (raw)
In-Reply-To: <1219876572-24736-1-git-send-email-torarvid@gmail.com>
On Thursday 28 August 2008 00:36:12 Tor Arvid Lund wrote:
> When this option is passed to git p4 clone, the checkout at the end would
> previously fail. This patch fixes it by optionally creating the master
> branch from refs/heads/p4/master, which is the correct one for this option.
>
> Signed-off-by: Tor Arvid Lund <torarvid@gmail.com>
Good catch :)
Acked-By: Simon Hausmann <simon@lst.de>
Simon
> contrib/fast-import/git-p4 | 8 ++++++--
> 1 files changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4
> index 46136d4..c4b8b4c 100755
> --- a/contrib/fast-import/git-p4
> +++ b/contrib/fast-import/git-p4
> @@ -1733,8 +1733,12 @@ class P4Clone(P4Sync):
> if not P4Sync.run(self, depotPaths):
> return False
> if self.branch != "master":
> - if gitBranchExists("refs/remotes/p4/master"):
> - system("git branch master refs/remotes/p4/master")
> + if self.importIntoRemotes:
> + masterbranch = "refs/remotes/p4/master"
> + else:
> + masterbranch = "refs/heads/p4/master"
> + if gitBranchExists(masterbranch):
> + system("git branch master %s" % masterbranch)
> system("git checkout -f")
> else:
> print "Could not detect main branch. No checkout/master
> branch created."
prev parent reply other threads:[~2008-08-28 7:30 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-08-27 22:36 [PATCH] git-p4: Fix checkout bug when using --import-local Tor Arvid Lund
2008-08-28 7:29 ` Simon Hausmann [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200808280929.07898.simon@lst.de \
--to=simon@lst.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=torarvid@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).