aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar Lykos153 <Lykos153@web>2017-11-01 15:30:14 +0000
committerGravatar admin <admin@branchable.com>2017-11-01 15:30:14 +0000
commit063cd40a43c86b948d838678ee77e1d35ee87d74 (patch)
tree15ee09d07529ff7cca14ba16495379a27dc8a212 /doc/bugs
parentee634fabd71fc01556d2fec04949737d19641c8c (diff)
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/Exporting_subdirs_fails.mdwn22
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/bugs/Exporting_subdirs_fails.mdwn b/doc/bugs/Exporting_subdirs_fails.mdwn
new file mode 100644
index 000000000..dd16ede85
--- /dev/null
+++ b/doc/bugs/Exporting_subdirs_fails.mdwn
@@ -0,0 +1,22 @@
+### Please describe the problem.
+git annex won't export subdirectories claiming they don't exist. `git rev-parse` however, returns a hash for said directories which then are accepted by `git annex export`.
+
+
+### What steps will reproduce the problem?
+
+[[!format sh """
+$ git annex export master:folder --to exp
+fatal: Path 'folder:' does not exist in 'master'
+git-annex: unknown tree
+$ git rev-parse master:folder
+943218c141ab2a315b533fa9f92fe610916b5d1b
+$ git annex export 943218c141ab2a315b533fa9f92fe610916b5d1b --to exp
+export exp testfile2
+ok
+(recording state in git...)
+"""]]
+
+
+### What version of git-annex are you using? On what operating system?
+git-annex version: 6.20171026-g43d011a52 on Arch Linux
+