On Sat, Oct 4, 2008 at 2:07 PM, Mark Burton <markb@xxxxxxxxxx> wrote: > > Hi, > > It's still early days for me and I haven't yet discovered how to ask git to list > all the files in a tree that don't have pending modifications (staged or not). I > have read about ls-files but it doesn't seem to offer that option. As far as I > can tell, it can list the files known to git and the files that have been > modified but not the difference between those sets. You could manually construct the difference between the lists: $ comm -3 <(git ls-files) <(git ls-files --modified) -- 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