summaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorElijah Newren <newren@gmail.com>2018-08-15 17:54:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-08-15 18:52:09 (GMT)
commite730b81df6bff6f78ecd705a1f8e5df48cac75ca (patch)
treed1111c9052968dce95ad7a59943a44f25001825b /environment.c
parent17313107454de99c0ebdf1a981b1f6a2b17dc2f5 (diff)
downloadgit-e730b81df6bff6f78ecd705a1f8e5df48cac75ca.zip
git-e730b81df6bff6f78ecd705a1f8e5df48cac75ca.tar.gz
git-e730b81df6bff6f78ecd705a1f8e5df48cac75ca.tar.bz2
Move definition of enum branch_track from cache.h to branch.h
'branch_track' feels more closely related to branching, and it is needed later in branch.h; rather than #include'ing cache.h in branch.h for this small enum, just move the enum and the external declaration for git_branch_track to branch.h. Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Elijah Newren <newren@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/environment.c b/environment.c
index 6cf0079..0c04a6d 100644
--- a/environment.c
+++ b/environment.c
@@ -8,6 +8,7 @@
* are.
*/
#include "cache.h"
+#include "branch.h"
#include "repository.h"
#include "config.h"
#include "refs.h"