archive: allow --exec and --remote without equal sign
commit4fac1d3a98bb86d855b706d7ce6a5069b9f687e8
authorRene Scharfe <rene.scharfe@lsrfire.ath.cx>
Fri, 25 Jul 2008 10:41:26 +0000 (25 12:41 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 30 Jul 2008 07:15:14 +0000 (30 00:15 -0700)
tree1ea7ba30188a77f99349fcb6c94973aa71f16726
parent1ce4790bf5eeceb212f003fffcb36069c0ebb45e
archive: allow --exec and --remote without equal sign

Convert git archive to parse_options().  The parameters --remote and --exec
are still handled by their special parser.  Define them anyway in order for
them to show up in the usage notice.

Note: in a command like "git archive --prefix --remote=a/ HEAD", the string
"--remote=a/" will be interpreted as a remote option, not a prefix, because
that special parser sees it first.  If one needs such a strange prefix, it
needs to be specified like this: "git archive --prefix=--remote=a/ HEAD"
(with an equal sign).

Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
archive.c