瀏覽代碼

Merge "Use depth flag when fetching"

Conley Owens 11 年之前
父節點
當前提交
db6f1b0884
共有 1 個文件被更改,包括 1 次插入3 次删除
  1. 1 3
      project.py

+ 1 - 3
project.py

@@ -1822,9 +1822,7 @@ class Project(object):
 
     cmd = ['fetch']
 
-    # The --depth option only affects the initial fetch; after that we'll do
-    # full fetches of changes.
-    if depth and initial:
+    if depth:
       cmd.append('--depth=%s' % depth)
 
     if quiet: