소스 검색

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: