diff options
author | Brandon Williams <bmwill@google.com> | 2018-05-16 15:58:01 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-18 06:19:42 +0900 |
commit | e5349abf93dfde8052bbcabb4be1dba77feb7053 (patch) | |
tree | 42d2d28af195068d38a4bc6c86902f947a9f91ce /remote.h | |
parent | 6bdb304b106db32b1cff185f2fa1b79e9c2c919c (diff) | |
download | git-e5349abf93dfde8052bbcabb4be1dba77feb7053.tar.gz |
remote: convert fetch refspecs to struct refspec
Convert the set of fetch refspecs stored in 'struct remote' to use
'struct refspec'.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'remote.h')
-rw-r--r-- | remote.h | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -30,10 +30,7 @@ struct remote { struct refspec push; - const char **fetch_refspec; - struct refspec_item *fetch; - int fetch_refspec_nr; - int fetch_refspec_alloc; + struct refspec fetch; /* * -1 to never fetch tags |