From 3945267a9959321fa966d4cc9d87b02f82d34a32 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 6 Dec 2010 16:57:25 +0000 Subject: [PATCH] scripts/feeds: support checking out git trees with different branches SVN-Revision: 24285 --- scripts/feeds | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/feeds b/scripts/feeds index 84f97feeb6..9f773df9ed 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -114,6 +114,7 @@ my %update_method = ( 'update' => ""}, 'src-git' => { 'init' => "git clone --depth 1 '%s' '%s'", + 'init_branch' => "git clone --depth 1 --branch '%s' '%s' '%s'", 'update' => "git pull", 'controldir' => ".git"}, 'src-bzr' => { @@ -143,10 +144,15 @@ sub update_feed_via($$$$) { my $localpath = "./feeds/$name"; my $safepath = $localpath; $safepath =~ s/'/'\\''/; + my ($base, $branch) = split(/;/, $src, 2); if( $relocate || !$m->{'update'} || !-d "$localpath/$m->{'controldir'}" ) { system("rm -rf '$safepath'"); - system(sprintf($m->{'init'}, $src, $safepath)) == 0 or return 1; + if ($m->{'init_branch'} and $branch) { + system(sprintf($m->{'init_branch'}, $branch, $base, $safepath)) == 0 or return 1; + } else { + system(sprintf($m->{'init'}, $src, $safepath)) == 0 or return 1; + } } else { system("cd '$safepath'; $m->{'update'}") == 0 or return 1; }