On Tue, Apr 22, 2008 at 7:01 PM, Ping Yin <pkufranky@xxxxxxxxx> wrote: > # create a super project super > $ mkdir super && cd super && git init > $ touch foo && git add foo && git commit -m "add foo" > > # create a sub project sub > $ mkdir sub && cd sub && git init > $ touch bar && git add bar && git commit -m "add bar" > > # add sub project to super project > $ cd .. > $ git add sub && git commit -m 'add sub' > > # remote contents of subproject > $ rm -rf sub/* sub/.git > > # git status -a regression > $ git status > # On branch master > nothing to commit (working directory clean) > $ git status -a > # On branch master > # Changes to be committed: > # (use "git reset HEAD <file>..." to unstage) > # > # deleted: sub > # > Another regression following In the super project super with empty submodule directory sub $ git diff diff --git a/sub b/sub deleted file mode 160000 index f2c0d45..0000000 --- a/sub +++ /dev/null @@ -1 +0,0 @@ -Subproject commit f2c0d4509a3178c... -- Ping Yin -- 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