Browse Source

Fixed filename of initial .git/info/exclude

Travis Cline 15 năm trước cách đây
mục cha
commit
56688b1028
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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