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/uploads_queued_to_annex-ignore_remotes.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/uploads_queued_to_annex-ignore_remotes.mdwn')
-rw-r--r-- | doc/bugs/uploads_queued_to_annex-ignore_remotes.mdwn | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/doc/bugs/uploads_queued_to_annex-ignore_remotes.mdwn b/doc/bugs/uploads_queued_to_annex-ignore_remotes.mdwn deleted file mode 100644 index 6f45cb8ff..000000000 --- a/doc/bugs/uploads_queued_to_annex-ignore_remotes.mdwn +++ /dev/null @@ -1,34 +0,0 @@ -## What steps will reproduce the problem? - -After the assistant idles for a while, it queues many transfers to remotes configured annex-ignore=true - -##What is the expected output? What do you see instead? - -No attempts to upload to repos marked 'annex-ignore=true' - -Instead I see many queued transfers to the remote 'origin' - -[Screenshot](https://www.evernote.com/shard/s1/sh/ea0de76c-4b68-4266-b9f6-8a9c343997b6/72baab4a3ce73b0915b151829bbeaf75/res/8a8ab1fb-3173-47ea-875d-b0e320cb827b/skitch.png) - -##What version of git-annex are you using? On what operating system? - - % > git annex version - git-annex version: 4.20130315 - local repository version: 3 - default repository version: 3 - supported repository versions: 3 4 - upgrade supported from repository versions: 0 1 2 - build flags: Assistant Webapp Pairing Testsuite S3 WebDAV FsEvents XMPP DNS - -Mac OSX 10.8.2 Build 12C3006 - -##Please provide any additional information below. - -The remote in question: - - [remote "origin"] - url = git@git.example.com:annex-home - fetch = +refs/heads/*:refs/remotes/origin/* - annex-ignore = true - -> belived to be [[fixed|done]] --[[Joey]] |