summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 53dbce7)
raw | patch | inline | side by side (parent: 53dbce7)
author | Shawn O. Pearce <spearce@spearce.org> | |
Sun, 27 Aug 2006 10:20:49 +0000 (06:20 -0400) | ||
committer | Shawn O. Pearce <spearce@spearce.org> | |
Sun, 14 Jan 2007 07:15:09 +0000 (02:15 -0500) |
Sometimes an import frontend may need to work with a temporary branch
which will actually contain many different branches over the life
of the import. This is especially useful when the frontend needs
to create a tag from a set of file versions which are otherwise
never a commit.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
which will actually contain many different branches over the life
of the import. This is especially useful when the frontend needs
to create a tag from a set of file versions which are otherwise
never a commit.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
fast-import.c | patch | blob | history |
diff --git a/fast-import.c b/fast-import.c
index f3376c60ef42d8a6fb5acf1868db9f4d7c512d44..778b8bfdd4aab6697b9955d1ee7ae928c1905956 100644 (file)
--- a/fast-import.c
+++ b/fast-import.c
cmd ::= new_blob
| new_commit
| new_tag
+ | reset_branch
;
new_blob ::= 'blob' lf
tag_msg;
tag_msg ::= data;
+ reset_branch ::= 'reset' sp ref_str lf;
+
# note: the first idnum in a stream should be 1 and subsequent
# idnums should not have gaps between values as this will cause
# the stream parser to reserve space for the gapped values. An
}
}
+static void cmd_reset_branch()
+{
+ struct branch *b;
+ char *str_uq;
+ const char *endp;
+ char *sp;
+
+ /* Obtain the branch name from the rest of our command */
+ sp = strchr(command_buf.buf, ' ') + 1;
+ str_uq = unquote_c_style(sp, &endp);
+ if (str_uq) {
+ if (*endp)
+ die("Garbage after ref in: %s", command_buf.buf);
+ sp = str_uq;
+ }
+ b = lookup_branch(sp);
+ if (b) {
+ b->last_commit = 0;
+ if (b->branch_tree.tree) {
+ release_tree_content_recursive(b->branch_tree.tree);
+ b->branch_tree.tree = NULL;
+ }
+ }
+ if (str_uq)
+ free(str_uq);
+}
+
static const char fast_import_usage[] =
"git-fast-import [--objects=n] [--depth=n] [--active-branches=n] [--export-marks=marks.file] [--branch-log=log] temp.pack";
cmd_new_commit();
else if (!strncmp("tag ", command_buf.buf, 4))
cmd_new_tag();
+ else if (!strncmp("reset ", command_buf.buf, 6))
+ cmd_reset_branch();
else
die("Unsupported command: %s", command_buf.buf);
}