Code

Move create_branch into a library file
[git.git] / branch.h
diff --git a/branch.h b/branch.h
new file mode 100644 (file)
index 0000000..8bcd9dc
--- /dev/null
+++ b/branch.h
@@ -0,0 +1,8 @@
+#ifndef BRANCH_H
+#define BRANCH_H
+
+void create_branch(const char *head,
+                  const char *name, const char *start_name,
+                  int force, int reflog, int track);
+
+#endif