forked from lix-project/hydra
Use git fetch -fu origin +$branch:$branch to fetch all changes for branch.
This commit is contained in:
parent
be3748e1ec
commit
6d5567bb16
|
@ -336,25 +336,12 @@ sub fetchInputGit {
|
||||||
|
|
||||||
chdir $clonePath or die $!; # !!! urgh, shouldn't do a chdir
|
chdir $clonePath or die $!; # !!! urgh, shouldn't do a chdir
|
||||||
|
|
||||||
if (defined $deepClone) {
|
# This command force the update of the local branch to be in the same as
|
||||||
# This fetch every branches from the remote repository and create a
|
# the remote branch for whatever the repository state is. This command mirror
|
||||||
# local branch for each heads of the remote repository. This is
|
# only one branch of the remote repository.
|
||||||
# necessary to provide a working git-describe.
|
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
||||||
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
("git", "fetch", "-fu", "origin", "+$branch:$branch"));
|
||||||
("git", "pull", "--ff-only", "-fu", "--all"));
|
die "Error fetching latest change from git repo at `$uri':\n$stderr" unless $res;
|
||||||
die "Error pulling latest change from git repo at `$uri':\n$stderr" unless $res;
|
|
||||||
# Make sure there is a local branch
|
|
||||||
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
|
||||||
("git", "checkout", "-f", $branch));
|
|
||||||
die "Error making local branch $branch in $clonePath from git repo at `$uri':\n$stderr" unless $res;
|
|
||||||
} else {
|
|
||||||
# This command force the update of the local branch to be in the same as
|
|
||||||
# the remote branch for whatever the repository state is. This command mirror
|
|
||||||
# only one branch of the remote repository.
|
|
||||||
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
|
||||||
("git", "fetch", "-fu", "origin", "+$branch:$branch"));
|
|
||||||
die "Error fetching latest change from git repo at `$uri':\n$stderr" unless $res;
|
|
||||||
}
|
|
||||||
|
|
||||||
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
($res, $stdout, $stderr) = captureStdoutStderr(600,
|
||||||
("git", "rev-parse", "$branch"));
|
("git", "rev-parse", "$branch"));
|
||||||
|
|
Loading…
Reference in a new issue