summaryrefslogtreecommitdiff
path: root/doc/todo/make_status_show_staged_files.mdwn
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/todo/make_status_show_staged_files.mdwn
parent0fdfa1f335157b36d2ac7007a7f70cb116d48d29 (diff)
todo item
Diffstat (limited to 'doc/todo/make_status_show_staged_files.mdwn')
-rw-r--r--doc/todo/make_status_show_staged_files.mdwn23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/todo/make_status_show_staged_files.mdwn b/doc/todo/make_status_show_staged_files.mdwn
new file mode 100644
index 000000000..cd2de5bce
--- /dev/null
+++ b/doc/todo/make_status_show_staged_files.mdwn
@@ -0,0 +1,23 @@
+### 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