From: Junio C Hamano Date: Tue, 11 Sep 2012 18:36:18 +0000 (-0700) Subject: Merge branch 'jk/argv-array' X-Git-Tag: v1.8.0-rc0~77 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=871313c35851e85a58c4012c02a806890c671813;p=git.git Merge branch 'jk/argv-array' Use argv-array API in "git fetch" implementation. * jk/argv-array: submodule: use argv_array instead of hand-building arrays fetch: use argv_array instead of hand-building arrays argv-array: fix bogus cast when freeing array argv-array: add pop function --- 871313c35851e85a58c4012c02a806890c671813 diff --cc builtin/fetch.c index 97a849a9d,6196e9179..24be754e1 --- a/builtin/fetch.c +++ b/builtin/fetch.c @@@ -14,12 -14,13 +14,13 @@@ #include "transport.h" #include "submodule.h" #include "connected.h" + #include "argv-array.h" static const char * const builtin_fetch_usage[] = { - "git fetch [] [ [...]]", - "git fetch [] ", - "git fetch --multiple [] [( | )...]", - "git fetch --all []", + N_("git fetch [] [ [...]]"), + N_("git fetch [] "), + N_("git fetch --multiple [] [( | )...]"), + N_("git fetch --all []"), NULL };