summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tool/lib/vcs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/vcs.rb b/tool/lib/vcs.rb
index 2a6a4b501b..85a4827fe2 100644
--- a/tool/lib/vcs.rb
+++ b/tool/lib/vcs.rb
@@ -583,7 +583,7 @@ class VCS
end
def export(revision, url, dir, keep_temp = false)
- system(COMMAND, "clone", "-s", (@srcdir || '.').to_s, "-b", url, dir) or return
+ system(COMMAND, "clone", "-c", "advice.detachedHead=false", "-s", (@srcdir || '.').to_s, "-b", url, dir) or return
system(COMMAND, "fetch", "origin", "+refs/notes/commits:refs/notes/commits", chdir: dir) or return
(Integer === revision ? GITSVN : GIT).new(File.expand_path(dir))
end