diff options
author | Joey Hess <joeyh@joeyh.name> | 2016-04-19 13:46:11 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2016-04-19 13:55:29 -0400 |
commit | dbfc00e2a6ad99200da35f75f889174cd7bfd195 (patch) | |
tree | 9d8a9d1353ab10376183c1bda881fface04b6fcb /doc/bugs/proxy_command_fails_on_Windows.mdwn | |
parent | 41b7950285ef1e91b80c441c2be68a1ef4d0d27c (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/proxy_command_fails_on_Windows.mdwn')
-rw-r--r-- | doc/bugs/proxy_command_fails_on_Windows.mdwn | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/bugs/proxy_command_fails_on_Windows.mdwn b/doc/bugs/proxy_command_fails_on_Windows.mdwn deleted file mode 100644 index 370764e03..000000000 --- a/doc/bugs/proxy_command_fails_on_Windows.mdwn +++ /dev/null @@ -1,36 +0,0 @@ -### Please describe the problem. - -The new ''git annex proxy'' command fails every call in the 2014-11-28 daily Windows build. - -### What steps will reproduce the problem? - -1) Install daily Windows build via https://downloads.kitenet.net/git-annex/autobuild/windows/. - -2) Run, in git bash: - - $ git annex proxy -- pull - git-annex: pull: createProcess: does not exist (No such file or directory) - failed - git-annex: proxy: 1 failed - -### What version of git-annex are you using? On what operating system? - -Daily Windows build 5.20141128-g70f997e on Windows 7 x64 - -### Please provide any additional information below. - - $ git annex version - git-annex version: 5.20141128-g70f997e - build flags: Assistant Webapp Webapp-secure Pairing Testsuite S3 WebDAV DNS Feed - s Quvi TDFA CryptoHash - key/value backends: SHA256E SHA1E SHA512E SHA224E SHA384E SKEIN256E SKEIN512E SH - A256 SHA1 SHA512 SHA224 SHA384 SKEIN256 SKEIN512 WORM URL - remote types: git gcrypt S3 bup directory rsync web webdav tahoe glacier ddar ho - ok external - local repository version: 5 - supported repository version: 5 - upgrade supported from repository versions: 2 3 4 - -> Seems the man page was mis-read, or possibly I've fixed it, -> since it certianly says you need to specify "-- git cmd", not -> just "-- cmd". [[done]] --[[Joey]] |