From: Robert Yang <liezhi.yang@windriver.com>
To: Paul Eggleton <paul.eggleton@linux.intel.com>
Cc: bitbake-devel@lists.openembedded.org
Subject: Re: [PATCH 1/1] git.py: create a branch when checkout
Date: Fri, 10 Jul 2015 08:00:35 +0800 [thread overview]
Message-ID: <559F0B23.7030208@windriver.com> (raw)
In-Reply-To: <4577144.KC5lOY8eR9@peggleto-mobl.ger.corp.intel.com>
On 07/10/2015 12:54 AM, Paul Eggleton wrote:
> On Thursday 09 July 2015 00:18:01 Robert Yang wrote:
>> * Create a branch and named as upstream branch when checkout source
>> * Set the branch to track remote branch.
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>> bitbake/lib/bb/fetch2/git.py | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/bitbake/lib/bb/fetch2/git.py b/bitbake/lib/bb/fetch2/git.py
>> index 2e53882..afa3d0a 100644
>> --- a/bitbake/lib/bb/fetch2/git.py
>> +++ b/bitbake/lib/bb/fetch2/git.py
>> @@ -279,8 +279,15 @@ class Git(FetchMethod):
>> if subdir != "":
>> runfetchcmd("%s read-tree %s%s" % (ud.basecmd,
>> ud.revisions[ud.names[0]], readpathspec), d) runfetchcmd("%s checkout-index
>> -q -f -a" % ud.basecmd, d)
>> + elif not ud.nobranch:
>> + branchname = ud.branches[ud.names[0]]
>> + runfetchcmd("%s checkout -B %s %s" % (ud.basecmd,
>> branchname, \
>> + ud.revisions[ud.names[0]]), d)
>> + runfetchcmd("%s branch --set-upstream %s origin/%s" %
>> (ud.basecmd, branchname, \
>> + branchname), d)
>
> Doesn't git checkout support a --track option so we could do this in one
> command rather than two?
I'm afraid that we can use --track here, the supported commands are:
git checkout -b <branch> --track <remote>/<branch>
or
git checkout -b <branch> <start point>
What we need is something like:
git checkout -b <branch> --track <remote>/<branch> <start point>
but git doesn't support this.
// Robert
>
> Cheers,
> Paul
>
next prev parent reply other threads:[~2015-07-10 0:00 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-09 7:18 [PATCH 0/1 V2] git.py: create a branch when checkout Robert Yang
2015-07-09 7:18 ` [PATCH 1/1] " Robert Yang
2015-07-09 16:54 ` Paul Eggleton
2015-07-10 0:00 ` Robert Yang [this message]
2015-07-10 9:04 ` Paul Eggleton
-- strict thread matches above, loose matches on Subject: below --
2015-07-07 1:33 [PATCH 0/1] " Robert Yang
2015-07-07 1:33 ` [PATCH 1/1] " Robert Yang
2015-07-07 15:17 ` Richard Purdie
2015-07-07 16:56 ` Paul Eggleton
2015-07-08 1:28 ` Robert Yang
2015-07-08 8:28 ` Richard Purdie
2015-07-09 5:57 ` Robert Yang
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=559F0B23.7030208@windriver.com \
--to=liezhi.yang@windriver.com \
--cc=bitbake-devel@lists.openembedded.org \
--cc=paul.eggleton@linux.intel.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