From 8a296c8e711edc8a0e6c300949db63dd983db48a Mon Sep 17 00:00:00 2001 From: Christian Hitz Date: Thu, 15 Aug 2013 17:18:27 +0200 Subject: ignore symbolic links during index-filter symbolic links should not be handled by git-fat even if their name match the filelist --- git-fat | 3 +++ 1 file changed, 3 insertions(+) (limited to 'git-fat') diff --git a/git-fat b/git-fat index f654fab..6345694 100755 --- a/git-fat +++ b/git-fat @@ -444,6 +444,9 @@ class GitFat(object): filename = tail.strip() if filename not in filelist: continue + if mode == "120000": + # skip symbolic links + continue # This file will contain the hash of the cleaned object hashfile = os.path.join(self.gitdir, 'fat', 'index-filter', blobhash) try: -- cgit v1.2.1