repository: remove unnecessary include of path.h
This also made it clear that several .c files that depended upon path.h
were missing a #include for it; add the missing includes while at it.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/notes-merge.c b/notes-merge.c
index 233e49e..4b328d8 100644
--- a/notes-merge.c
+++ b/notes-merge.c
@@ -6,6 +6,7 @@
#include "object-file.h"
#include "object-name.h"
#include "object-store.h"
+#include "path.h"
#include "repository.h"
#include "diff.h"
#include "diffcore.h"