summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorMichael Rappazzo <rappazzo@gmail.com>2015-10-02 11:55:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-10-02 20:07:38 (GMT)
commitac6c561b598ae74d8e752e22607194536000e4db (patch)
tree691b1b7c6835177276ffca71cc59263f4c35c133 /builtin
parent8d530c4d64ffcc853889f7b385f554d53db375ed (diff)
downloadgit-ac6c561b598ae74d8e752e22607194536000e4db.zip
git-ac6c561b598ae74d8e752e22607194536000e4db.tar.gz
git-ac6c561b598ae74d8e752e22607194536000e4db.tar.bz2
worktree: add top-level worktree.c
worktree.c contains functions to work with and get information from worktrees. This introduction moves functions related to worktrees from branch.c into worktree.c Signed-off-by: Michael Rappazzo <rappazzo@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/notes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/notes.c b/builtin/notes.c
index 3608c64..13c0af9 100644
--- a/builtin/notes.c
+++ b/builtin/notes.c
@@ -19,7 +19,7 @@
#include "string-list.h"
#include "notes-merge.h"
#include "notes-utils.h"
-#include "branch.h"
+#include "worktree.h"
static const char * const git_notes_usage[] = {
N_("git notes [--ref <notes-ref>] [list [<object>]]"),