On Fri, Jun 28, 2013 at 12:29:36PM +0200, SZEDER Gábor wrote: > On Mon, Jun 24, 2013 at 10:52:55PM +0530, Ramkumar Ramachandra wrote: > > Signed-off-by: Ramkumar Ramachandra <artagnon@xxxxxxxxx> > > + __git_complete_index_file > > With or without this change we can't ask for the status of a certain > deleted file: > > $ git rm version.h > rm 'version.h' > $ git status > # On branch master > # Changes to be committed: > # (use "git reset HEAD <file>..." to unstage) > # > # deleted: version.h > # > $ git status v<TAB> > varint.c varint.h vcs-svn/ version.c Well, at least the deleted is there if I only remove it from the work tree (i.e. use 'rm' instead of 'git rm'): $ rm version.h $ git status # On branch master # Changes not staged for commit: # (use "git add/rm <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working # directory) # # deleted: version.h # no changes added to commit (use "git add" and/or "git commit -a") $ git status v<TAB> varint.c varint.h vcs-svn/ version.c version.h Gábor -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html