Re: Add + Status patches

2005-04-18 Thread David Greaves
Junio C Hamano wrote: DG It allows: DG find src -type f | git add - I am slow today, but have you considered using xargs? yep thanks :) I know you _could_ do it with xargs - but you _could_ use the raw git commands too. This is a be nice to the user layer and I was 'surprised' that neither

Re: Add + Status patches

2005-04-18 Thread Junio C Hamano
DG == David Greaves [EMAIL PROTECTED] writes: DG ... neither DG git add . DG nor DG git add -r . DG worked. These would be much much much nicer than pipe the list of filenames from stdin which reminds me of cpio ;-). - To unsubscribe from this list: send the line unsubscribe git in the body of

Re: Add + Status patches

2005-04-18 Thread Petr Baudis
Dear diary, on Tue, Apr 19, 2005 at 12:18:12AM CEST, I got a letter where David Greaves [EMAIL PROTECTED] told me that... Junio C Hamano wrote: DG It allows: DG find src -type f | git add - I am slow today, but have you considered using xargs? yep thanks :) I know you _could_ do