From e99809528bd91623438d99311f85323bb0685ca5 Mon Sep 17 00:00:00 2001 From: "http://svario.it/gioele" Date: Sat, 1 Nov 2014 16:53:07 +0000 Subject: [PATCH] new bug "git annex status does not report added files" --- ...ex_status_does_not_report_added_files.mdwn | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 doc/bugs/git_annex_status_does_not_report_added_files.mdwn 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 0000000000..cd2de5bce5 --- /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