From 3273f6b4c5390e2f3de56e9ec015184f32d10588 Mon Sep 17 00:00:00 2001 From: Christian Spurk Date: Fri, 9 May 2014 11:05:50 +0200 Subject: =?UTF-8?q?fix=20OSError=20on=20=E2=80=9Cgit=20fat=20pull=E2=80=9D?= =?UTF-8?q?=20with=20manually=20removed,=20tracked=20files=20in=20WC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit If there is any manually removed, tracked file in the working copy, then running “git fat pull” fails with an OSError without this fix. --- test.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'test.sh') diff --git a/test.sh b/test.sh index e4ee3bb..e9c9163 100755 --- a/test.sh +++ b/test.sh @@ -32,3 +32,9 @@ cd fat-test2 git fat init git fat pull -- 'a.fa*' cat a.fat +echo 'file which is committed and removed afterwards' > d +git add d +git commit -m'add d with normal content' +rm d +git fat pull + -- cgit v1.2.1