summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawmBzC3FKGARGB1OI3TV6s4z09rroja381Q <Jean@web>2014-01-10 04:18:19 +0000
committerGravatar admin <admin@branchable.com>2014-01-10 04:18:19 +0000
commit8e46dc5470da43c732a422a956632936eab3270c (patch)
treeebb502818fefa8dd5b42540c14b1246ff9390260 /doc/bugs
parente8b616e343a70e7b39742f495008c40acd6cde5f (diff)
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/broken_git_annex_map_on_direct_mode.mdwn56
1 files changed, 56 insertions, 0 deletions
diff --git a/doc/bugs/broken_git_annex_map_on_direct_mode.mdwn b/doc/bugs/broken_git_annex_map_on_direct_mode.mdwn
new file mode 100644
index 000000000..2f9431063
--- /dev/null
+++ b/doc/bugs/broken_git_annex_map_on_direct_mode.mdwn
@@ -0,0 +1,56 @@
+### Please describe the problem.
+
+`git annex map` shows broken graph when direct mode is used
+
+### What steps will reproduce the problem?
+
+See transcript
+
+### What version of git-annex are you using? On what operating system?
+
+[[!format sh """
+$ git annex version
+git-annex version: 5.20140107
+build flags: Assistant Webapp Pairing Testsuite S3 WebDAV Inotify DBus XMPP DNS Feeds Quvi TDFA CryptoHash
+key/value backends: SHA256E SHA1E SHA512E SHA224E SHA384E SKEIN256E SKEIN512E SHA256 SHA1 SHA512 SHA224 SHA384 SKEIN256 SKEIN512 WORM URL
+remote types: git gcrypt S3 bup directory rsync web webdav glacier hook external
+
+$ LANG=C apt-cache policy git-annex
+git-annex:
+ Installed: 5.20140107
+ Candidate: 5.20140107
+ Version table:
+ *** 5.20140107 0
+ 50 http://http.debian.net/debian/ sid/main amd64 Packages
+ 100 /var/lib/dpkg/status
+"""]]
+
+
+### Please provide any additional information below.
+
+[[!format sh """
+# If you can, paste a complete transcript of the problem occurring here.
+# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log
+
+git init a
+cd a
+git annex init
+
+cd ..
+git clone a b
+cd b
+git annex init
+
+
+# OK
+git annex map
+
+cd ../a
+git annex direct
+cd ../b
+
+# NOT OK
+git annex map
+
+# End of transcript or log.
+"""]]