소스 검색

Merge fix to write info/exclude rather than info/excludes file.

Jelmer Vernooij 15 년 전
부모
커밋
08f141b331
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -1025,7 +1025,7 @@ class Repo(BaseRepo):
     bare = false
     logallrefupdates = true
 """)
-        ret._put_named_file(os.path.join('info', 'excludes'), '')
+        ret._put_named_file(os.path.join('info', 'exclude'), '')
         return ret
 
     create = init_bare