summaryrefslogtreecommitdiff
path: root/doc/bugs/git_annex_map_has_problems_with_urls_containing___126__.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/git_annex_map_has_problems_with_urls_containing___126__.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/git_annex_map_has_problems_with_urls_containing___126__.mdwn')
-rw-r--r--doc/bugs/git_annex_map_has_problems_with_urls_containing___126__.mdwn46
1 files changed, 0 insertions, 46 deletions
diff --git a/doc/bugs/git_annex_map_has_problems_with_urls_containing___126__.mdwn b/doc/bugs/git_annex_map_has_problems_with_urls_containing___126__.mdwn
deleted file mode 100644
index 24f04eeb5..000000000
--- a/doc/bugs/git_annex_map_has_problems_with_urls_containing___126__.mdwn
+++ /dev/null
@@ -1,46 +0,0 @@
-I discovered a problem with `git annex map` and relative urls containing `~`.
-In this case i have a remote `noam` configured with the the following urls:
-
- zsh» git remote show noam | head -3
- * remote noam
- Fetch URL: noam:bare-annex
- Push URL: noam:bare-annex
-
-If i try to run `git annex map` i get the following error:
-
- zsh» git annex map
- map /home/esc/annex ok
- map noam (sshing...)
- bash: line 0: cd: /~/bare-annex/: No such file or directory
- Command ssh ["noam","cd '/~/bare-annex/' && git config --list"] failed; exit code 1
- (sshing...)
- ok
-
- running: dot -Tx11 map.dot
-
- ok
-
-If i run the failing command manually, i get:
-
- zsh» ssh noam "cd ~/bare-annex && git config --list"
- core.repositoryformatversion=0
- core.filemode=true
- core.bare=true
- annex.uuid=f267f55c-0732-11e1-a93b-93119f9aaf54
- annex.version=3
-
-Also i can change the remote url to an absolute one, in which case `git annex
-map` works too:
-
- zsh» git remote set-url noam noam:/home/esc/bare-annex
- zsh» git annex map
- map /home/esc/annex ok
- map noam (sshing...)
- ok
-
- running: dot -Tx11 map.dot
-
- ok
-
-
-> [[fixed|done]] --[[Joey]]