Index: gclient_scm.py |
diff --git a/gclient_scm.py b/gclient_scm.py |
index 8c7bcba01f0ea6ced4842e9f4b939961a8b722b7..e51cc391d8b7a64b1b7a98fd009385ed7d1b2931 100644 |
--- a/gclient_scm.py |
+++ b/gclient_scm.py |
@@ -16,6 +16,9 @@ import scm |
import subprocess2 |
+THIS_FILE_PATH = __file__ |
M-A Ruel
2013/04/19 19:28:58
THIS_FILE_PATH = os.path.abspath(__file__)
becaus
szager
2013/04/19 20:12:13
Done.
|
+ |
+ |
class DiffFiltererWrapper(object): |
"""Simple base class which tracks which file is being diffed and |
replaces instances of its file name in the original and |
@@ -652,8 +655,9 @@ class GitWrapper(SCMWrapper): |
# git clone doesn't seem to insert a newline properly before printing |
# to stdout |
print('') |
- |
- clone_cmd = ['clone', '--progress'] |
+ template_path = os.path.abspath( |
+ os.path.join(os.path.dirname(THIS_FILE_PATH), 'git-templates')) |
+ clone_cmd = ['clone', '--progress', '--template=%s' % template_path] |
if revision.startswith('refs/heads/'): |
clone_cmd.extend(['-b', revision.replace('refs/heads/', '')]) |
detach_head = False |