diff options
author | Jeff King <peff@peff.net> | 2020-07-28 22:23:39 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-07-29 00:02:17 +0200 |
commit | dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98 (patch) | |
tree | 169f4f51bef928dbc46241d80ab3bff7e3e4af11 /http-push.c | |
parent | argv-array: rename to strvec (diff) | |
download | git-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.tar.xz git-dbbcd44fb47347a3fdbee88ea21805b7f4ac0b98.zip |
strvec: rename files from argv-array to strvec
This requires updating #include lines across the code-base, but that's
all fairly mechanical, and was done with:
git ls-files '*.c' '*.h' |
xargs perl -i -pe 's/argv-array.h/strvec.h/'
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-push.c')
-rw-r--r-- | http-push.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-push.c b/http-push.c index 1ff1883cdd..3a47921cc3 100644 --- a/http-push.c +++ b/http-push.c @@ -11,7 +11,7 @@ #include "remote.h" #include "list-objects.h" #include "sigchain.h" -#include "argv-array.h" +#include "strvec.h" #include "packfile.h" #include "object-store.h" #include "commit-reach.h" |