aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/wrong_synopsis_in_manpage_of_git_annex_pre-commit.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/wrong_synopsis_in_manpage_of_git_annex_pre-commit.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/wrong_synopsis_in_manpage_of_git_annex_pre-commit.mdwn')
-rw-r--r--doc/bugs/wrong_synopsis_in_manpage_of_git_annex_pre-commit.mdwn36
1 files changed, 0 insertions, 36 deletions
diff --git a/doc/bugs/wrong_synopsis_in_manpage_of_git_annex_pre-commit.mdwn b/doc/bugs/wrong_synopsis_in_manpage_of_git_annex_pre-commit.mdwn
deleted file mode 100644
index f94786b03..000000000
--- a/doc/bugs/wrong_synopsis_in_manpage_of_git_annex_pre-commit.mdwn
+++ /dev/null
@@ -1,36 +0,0 @@
-### Please describe the problem.
-
-The synopsis in the manpage of git annex pre-commit mentions
-git annex instead of git annex pre-commit.
-
-I'll attach a patch to fix the manpage, below:
-
-[[!format diff """
-From f5fed6ccdcef3bcb8be07691265842d437037dec Mon Sep 17 00:00:00 2001
-From: Felix Gruber <felgru@gmx.de>
-Date: Fri, 1 May 2015 02:05:32 +0200
-Subject: [PATCH] fix synopsis in manpage of git annex pre-commit
-
----
- doc/git-annex-pre-commit.mdwn | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/doc/git-annex-pre-commit.mdwn b/doc/git-annex-pre-commit.mdwn
-index e0f6fdb..bc1e86e 100644
---- a/doc/git-annex-pre-commit.mdwn
-+++ b/doc/git-annex-pre-commit.mdwn
-@@ -4,7 +4,7 @@ git-annex pre-commit - run by git pre-commit hook
-
- # SYNOPSIS
-
--git annex `[path ...]`
-+git annex pre-commit `[path ...]`
-
- # DESCRIPTION
-
---
-2.1.4
-"""]]
-
-> You know, this is a wiki, you could fix it yourself. With git push even.
-> In any case [[done]] now. --[[Joey]]