X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=remote.h;h=0f6033fb258c5a44971c7479e1dfe938393ce398;hb=cf2756ae19e04a7c465ee7bb3b9b8ed4f7e45f28;hp=86e036d61006a577ad091bdc30e58987871415b0;hpb=4eb39e9bcccc54eb23af8a7e2676c63e5bf32866;p=git.git diff --git a/remote.h b/remote.h index 86e036d61..0f6033fb2 100644 --- a/remote.h +++ b/remote.h @@ -6,14 +6,17 @@ struct remote { const char **url; int url_nr; + int url_alloc; const char **push_refspec; struct refspec *push; int push_refspec_nr; + int push_refspec_alloc; const char **fetch_refspec; struct refspec *fetch; int fetch_refspec_nr; + int fetch_refspec_alloc; /* * -1 to never fetch tags @@ -100,6 +103,7 @@ struct branch { const char **merge_name; struct refspec **merge; int merge_nr; + int merge_alloc; }; struct branch *branch_get(const char *name);