summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2014-11-03 13:06:26 -0400
committerGravatar Joey Hess <joey@kitenet.net>2014-11-03 13:06:26 -0400
commit674ee0c9456ab1e90315c01b156d59ca55767261 (patch)
tree4f39c2510a20775fbea98d193a0823011e03f778 /doc/bugs
parent0fdfa1f335157b36d2ac7007a7f70cb116d48d29 (diff)
todo item
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/git_annex_status_does_not_report_added_files.mdwn23
-rw-r--r--doc/bugs/git_annex_status_does_not_report_added_files/comment_1_3874f5da5a300b7d443e1ad6373b4099._comment11
2 files changed, 0 insertions, 34 deletions
diff --git a/doc/bugs/git_annex_status_does_not_report_added_files.mdwn b/doc/bugs/git_annex_status_does_not_report_added_files.mdwn
deleted file mode 100644
index cd2de5bce..000000000
--- a/doc/bugs/git_annex_status_does_not_report_added_files.mdwn
+++ /dev/null
@@ -1,23 +0,0 @@
-### Please describe the problem.
-
-`git annex status` does not report the fact that some files have been added but not yet committed.
-
-### What steps will reproduce the problem?
-
- $ # alwayscommit = false
- $ echo "new" > new-file
- $ git annex status
- ? new-file
- $ git annex add
- add new-file
- $ git annex status
- $
-
-Using the `git status` command directly will show the added files
-
- $ git -c core.bare=false status --porcelain | grep -v '^ T'
- AT new-file
-
-### What version of git-annex are you using? On what operating system?
-
-git-annex version: 5.20141024-g613f396
diff --git a/doc/bugs/git_annex_status_does_not_report_added_files/comment_1_3874f5da5a300b7d443e1ad6373b4099._comment b/doc/bugs/git_annex_status_does_not_report_added_files/comment_1_3874f5da5a300b7d443e1ad6373b4099._comment
deleted file mode 100644
index 7e7cc139b..000000000
--- a/doc/bugs/git_annex_status_does_not_report_added_files/comment_1_3874f5da5a300b7d443e1ad6373b4099._comment
+++ /dev/null
@@ -1,11 +0,0 @@
-[[!comment format=mdwn
- username="joey"
- subject="""comment 1"""
- date="2014-11-03T17:03:34Z"
- content="""
-It's documentation says it shows files that have been deleted/modified/are
-not checked into git. Not staged files.
-
-So, this is not a bug report, it's a request to make git annex status list
-more files.
-"""]]