summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar aranea@650e41fad422f2a4d6f36ca1f20d41b7c0f18ab7 <aranea@web>2016-10-31 21:40:06 +0000
committerGravatar admin <admin@branchable.com>2016-10-31 21:40:06 +0000
commit6d6d0a7a1f49f85bd649981df7acadf97891cd2f (patch)
tree2919b787015696b841ffb75cad6bc00aaf55aef4
parente679119557a2186e03d3d927c1ba48acada98574 (diff)
-rw-r--r--doc/bugs/git-annex_chokes_on_filenames_including_spaces.mdwn26
1 files changed, 26 insertions, 0 deletions
diff --git a/doc/bugs/git-annex_chokes_on_filenames_including_spaces.mdwn b/doc/bugs/git-annex_chokes_on_filenames_including_spaces.mdwn
new file mode 100644
index 000000000..4415d65cd
--- /dev/null
+++ b/doc/bugs/git-annex_chokes_on_filenames_including_spaces.mdwn
@@ -0,0 +1,26 @@
+### Please describe the problem.
+
+git-annex throws an error message (see below) when trying to add a file whose name includes a space.
+
+
+### What version of git-annex are you using? On what operating system?
+
+git-annex version: 6.20161012
+build flags: ConcurrentOutput Feeds Quvi
+uname -srm: Linux 4.7.10-hardened x86_64
+
+
+### Please provide any additional information below.
+
+[[!format sh """
+aranea@gentp ~/t/annex-test $ git init .
+Initialized empty Git repository in /home/aranea/tmp/annex-test/.git/
+aranea@gentp ~/t/annex-test master $ git annex init
+init ok
+(recording state in git...)
+aranea@gentp ~/t/annex-test master $ touch 'foo bar'
+aranea@gentp ~/t/annex-test master $ git annex add
+add foo bar git-annex: unknown response from git cat-file ("HEAD:./foo bar missing",Ref "HEAD:./foo bar")
+CallStack (from HasCallStack):
+ error, called at ./Git/CatFile.hs:102:28 in main:Git.CatFile
+"""]]