Merge branch 'di/fast-import-empty-tag-note-fix'
* di/fast-import-empty-tag-note-fix: fast-import: don't allow to note on empty branch fast-import: don't allow to tag empty branch
This commit is contained in:
@ -2411,6 +2411,8 @@ static void note_change_n(struct branch *b, unsigned char old_fanout)
|
||||
/* <committish> */
|
||||
s = lookup_branch(p);
|
||||
if (s) {
|
||||
if (is_null_sha1(s->sha1))
|
||||
die("Can't add a note on empty branch.");
|
||||
hashcpy(commit_sha1, s->sha1);
|
||||
} else if (*p == ':') {
|
||||
uintmax_t commit_mark = strtoumax(p + 1, NULL, 10);
|
||||
@ -2712,6 +2714,8 @@ static void parse_new_tag(void)
|
||||
from = strchr(command_buf.buf, ' ') + 1;
|
||||
s = lookup_branch(from);
|
||||
if (s) {
|
||||
if (is_null_sha1(s->sha1))
|
||||
die("Can't tag an empty branch.");
|
||||
hashcpy(sha1, s->sha1);
|
||||
type = OBJ_COMMIT;
|
||||
} else if (*from == ':') {
|
||||
|
Reference in New Issue
Block a user