Use single-branch clone for unique ref on boilerplate
This commit is contained in:
parent
95ccb89fb6
commit
68b56872bd
1 changed files with 28 additions and 3 deletions
|
@ -131,8 +131,30 @@ class InitCommand extends Command {
|
||||||
|
|
||||||
print(
|
print(
|
||||||
'Cloning "${boilerplate.name}" boilerplate from "${boilerplate.url}"...');
|
'Cloning "${boilerplate.name}" boilerplate from "${boilerplate.url}"...');
|
||||||
var git = await Process.start("git",
|
|
||||||
["clone", "--depth", "1", boilerplate.url, projectDir.absolute.path]);
|
Process git;
|
||||||
|
|
||||||
|
if (boilerplate.ref == null) {
|
||||||
|
git = await Process.start("git", [
|
||||||
|
"clone",
|
||||||
|
"--depth",
|
||||||
|
"1",
|
||||||
|
boilerplate.url,
|
||||||
|
projectDir.absolute.path
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
|
// git clone --single-branch -b branch host:/dir.git
|
||||||
|
git = await Process.start("git", [
|
||||||
|
"clone",
|
||||||
|
"--depth",
|
||||||
|
"1",
|
||||||
|
"--single-branch",
|
||||||
|
"-b",
|
||||||
|
boilerplate.ref,
|
||||||
|
boilerplate.url,
|
||||||
|
projectDir.absolute.path
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
stdout.addStream(git.stdout);
|
stdout.addStream(git.stdout);
|
||||||
stderr.addStream(git.stderr);
|
stderr.addStream(git.stderr);
|
||||||
|
@ -141,8 +163,10 @@ class InitCommand extends Command {
|
||||||
throw new Exception("Could not clone repo.");
|
throw new Exception("Could not clone repo.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
if (boilerplate.ref != null) {
|
if (boilerplate.ref != null) {
|
||||||
git = await Process.start("git", ["checkout", boilerplate.ref]);
|
git = await Process
|
||||||
|
.start("git", ["checkout", 'origin/${boilerplate.ref}']);
|
||||||
|
|
||||||
stdout.addStream(git.stdout);
|
stdout.addStream(git.stdout);
|
||||||
stderr.addStream(git.stderr);
|
stderr.addStream(git.stderr);
|
||||||
|
@ -151,6 +175,7 @@ class InitCommand extends Command {
|
||||||
throw new Exception("Could not checkout branch ${boilerplate.ref}.");
|
throw new Exception("Could not checkout branch ${boilerplate.ref}.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
if (boilerplate.needsPrebuild) {
|
if (boilerplate.needsPrebuild) {
|
||||||
await preBuild(projectDir).catchError((_) => null);
|
await preBuild(projectDir).catchError((_) => null);
|
||||||
|
|
Loading…
Reference in a new issue