summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar http://svario.it/gioele <gioele@web>2014-11-01 16:53:07 +0000
committerGravatar admin <admin@branchable.com>2014-11-01 16:53:07 +0000
commitc54d8072006dfe84c00946a2057dfdf4b15abfb5 (patch)
tree2f29a3fdbb0e81a888b7a393e5a0dfbf3149b480
parent0b43251cbbd27cbb69acc1e2dc74de40a816d1e6 (diff)
new bug "git annex status does not report added files"
-rw-r--r--doc/bugs/git_annex_status_does_not_report_added_files.mdwn23
1 files changed, 23 insertions, 0 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
new file mode 100644
index 000000000..cd2de5bce
--- /dev/null
+++ b/doc/bugs/git_annex_status_does_not_report_added_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