summaryrefslogtreecommitdiff
path: root/doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--us...
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-09-29 12:55:42 -0400
commit0dfc1d4e6eb37aadaba47a210539b2438fba97f5 (patch)
treee0beee12909c581f06829060a93a72d6686ca730 /doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn
parentbd2a9fb40ef0bbe812e8ea375a5caabd6e628ef2 (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 2017. Command line used: for f in $(grep -l '|done\]\]' -- *.mdwn); do d="$(echo "$f" | sed 's/.mdwn$//')"; if [ -z "$(git log --since=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --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=01-01-2017 --pretty=oneline -- "$f")" -a -z "$(git log --since=01-01-2017 --pretty=oneline -- "$d")" ]; then git rm -- "./$f" ; git rm -rf "./$d"; fi; done
Diffstat (limited to 'doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn')
-rw-r--r--doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn35
1 files changed, 0 insertions, 35 deletions
diff --git a/doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn b/doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn
deleted file mode 100644
index 87a0428f0..000000000
--- a/doc/todo/patch__58___Command__47__Unused.hs__58___Change_--unused-refspec_back_to_--used-refspec.mdwn
+++ /dev/null
@@ -1,35 +0,0 @@
-This patch is also available from the "used-refspec-fix" branch at <https://github.com/sunny256/git-annex/>.
-
-[[!format hs """
-
-From e47e743327e519eaa07817c610b08b0e6844ca8e Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?=C3=98yvind=20A=2E=20Holm?= <sunny@sunbase.org>
-Date: Tue, 8 Sep 2015 14:29:25 +0200
-Subject: [PATCH] Command/Unused.hs: Change --unused-refspec back to
- --used-refspec
-
-Fix typo in commit 160d4b9 ("convert Unused, and remove some dead code
-for old style option parsing", 2015-07-10), the "git-annex unused
---used-refspec" option was incorrectly changed to --unused-refspec.
----
- Command/Unused.hs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Command/Unused.hs b/Command/Unused.hs
-index a383d56..4756cda 100644
---- a/Command/Unused.hs
-+++ b/Command/Unused.hs
-@@ -53,7 +53,7 @@ optParser _ = UnusedOptions
- <> help "remote to check for unused content"
- ))
- <*> optional (option (eitherReader parseRefSpec)
-- ( long "unused-refspec" <> metavar paramRefSpec
-+ ( long "used-refspec" <> metavar paramRefSpec
- <> help "refs to consider used (default: all branches)"
- ))
-
---
-2.6.0.rc0.24.gec371ff
-"""]]
-
-> applied, thanks! [[done]] --[[Joey]]