Jeff Carr <[EMAIL PROTECTED]> writes:
> Something simple like the perl script at the bottom would be useful for
> showing files that haven't been added via git-update-cache --add already.
If I am not mistaken, you just reinvented:
$ git ls-files --others
in a very expensive way. Notice your `find . -type f` that does
not prune .git directory upfront.
Also you may want to take a look at:
$ git ls-files --others --exclude-from=.git/info/exclude
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html