Graeme Geldenhuys:

This works very well. The only problem we have so far is that if we have files with spaces in the name (eg: SQL update scripts), then the command breaks.

If you add -z to the git diff command-line, it will give you the names with nul terminators instead. If you couple that with xargs -0, you should be able to do something like this (untested):

deply = !sh -c 'git diff --name-only -z -D $2 | xargs -x -0 git archive --prefix=$1/ -o deploy_$1.zip HEAD'

--
\\// Peter - http://www.softwolves.pp.se/
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to