diff options
author | Brandon Williams <bmwill@google.com> | 2018-05-17 00:57:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-17 23:19:41 +0200 |
commit | ec0cb496553ac82f97205a415ca77618406b30e3 (patch) | |
tree | 77a9fc47ed6ea5e08d424faa2776d4c6a9e1e636 /branch.c | |
parent | The fifth batch for 2.18 (diff) | |
download | git-ec0cb496553ac82f97205a415ca77618406b30e3.tar.xz git-ec0cb496553ac82f97205a415ca77618406b30e3.zip |
refspec: move refspec parsing logic into its own file
In preparation for performing a refactor on refspec related code, move
the refspec parsing logic into its own file.
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'branch.c')
-rw-r--r-- | branch.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3,6 +3,7 @@ #include "config.h" #include "branch.h" #include "refs.h" +#include "refspec.h" #include "remote.h" #include "commit.h" #include "worktree.h" |