quoted
quoted
quoted
quoted
"JCH" == Junio C Hamano [off-list ref] writes:
JCH> ... For example, in linux-2.6 git tree, you _ought_ to be
JCH> able to say something like this:
JCH> cd fs
JCH> find ext? ../include/linux -type f -print0 |
JCH> git-path-helper -z |
JCH> xargs -r -0 git-update-cache --add --
The above example has an obvious thinko/typo. It should have
been like this:
cd fs
find ext? ../include/linux -type f -print0 |
git-path-helper -z | {
cd .. && xargs -r -0 git-update-cache --add --
}