summaryrefslogtreecommitdiff
path: root/doc/bugs/encfs_accused_of_being_crippled.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:46:11 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-19 13:55:29 -0400
commitdbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch)
tree9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/encfs_accused_of_being_crippled.mdwn
parent41b7950285ef1e91b80c441c2be68a1ef4d0d27c (diff)
remove old closed bugs and todo items to speed up wiki updates and reduce size
Remove closed bugs and todos that were last edited or commented before Q3 2015. Command line used: for f in $(grep -l '\[\[done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=09-09-2015 --pretty=oneline -- "$f")" -a -z "$(git log --since=09-09-2015 --pretty=oneline -- "$d")" ]; then git rm -- "$f"; git rm -rf "$d"; fi; done
Diffstat (limited to 'doc/bugs/encfs_accused_of_being_crippled.mdwn')
-rw-r--r--doc/bugs/encfs_accused_of_being_crippled.mdwn41
1 files changed, 0 insertions, 41 deletions
diff --git a/doc/bugs/encfs_accused_of_being_crippled.mdwn b/doc/bugs/encfs_accused_of_being_crippled.mdwn
deleted file mode 100644
index 617233670..000000000
--- a/doc/bugs/encfs_accused_of_being_crippled.mdwn
+++ /dev/null
@@ -1,41 +0,0 @@
-### Please describe the problem.
-
-I tried to create an annex (``git annex init foo``) inside a ``encfs`` mount, and git-annex says that it's crippled, and disables core.symlinks and goes into direct mode
-
-### What steps will reproduce the problem?
-
- apt-get install encfs
- encfs -o kernel_cache empty_dir other_empty_dir
- cd other_empty_dir
- git init
- git annex init foo
-
-### Expected results
-
- init foo ok
- (Recording state in git...)
-
-### Actual results
-
- init foo
- Detected a crippled filesystem.
-
- Disabling core.symlinks.
-
- Enabling direct mode.
- ok
- (Recording state in git...)
-
-### What version of git-annex are you using? On what operating system?
-
-4.20130601 on debian unstable
-
-
-### P.S.
-
-This was particularly annoying when I tried this on a bare repository. I'm pretty sure bare repositories don't need symlinks, and should definitely not be in direct mode. Hopefully you can fix it before I have time to file another bug report :)
-
-Thank you!
-
-
-> [[fixed|done]] --[[Joey]]