summaryrefslogtreecommitdiff
path: root/t/t9300-fast-import.sh
diff options
context:
space:
mode:
authorDmitry Ivankov <divanorama@gmail.com>2011-09-22 19:47:04 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-09-22 20:30:57 (GMT)
commit2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c (patch)
treef71091b0ca54833cb26d70187ad9fbbf4463ddef /t/t9300-fast-import.sh
parent0dc691a4f3dcb67dd948eb97efcf7098059988c1 (diff)
downloadgit-2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c.zip
git-2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c.tar.gz
git-2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c.tar.bz2
fast-import: don't allow to tag empty branch
'reset' command makes fast-import start a branch from scratch. It's name is kept in lookup table but it's sha1 is null_sha1 (special value). 'tag' command can be used to tag a branch by it's name. lookup_branch() is used it that case and it doesn't check for null_sha1. So fast-import writes a tag for null_sha1 object instead of giving a error. Add a check to deny tagging an empty branch and add a corresponding test. Signed-off-by: Dmitry Ivankov <divanorama@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9300-fast-import.sh')
-rwxr-xr-xt/t9300-fast-import.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t9300-fast-import.sh b/t/t9300-fast-import.sh
index 1a6c066..0b97d7a 100755
--- a/t/t9300-fast-import.sh
+++ b/t/t9300-fast-import.sh
@@ -820,6 +820,18 @@ test_expect_success \
'test 1 = `git rev-list J | wc -l` &&
test 0 = `git ls-tree J | wc -l`'
+cat >input <<INPUT_END
+reset refs/heads/J2
+
+tag wrong_tag
+from refs/heads/J2
+data <<EOF
+Tag branch that was reset.
+EOF
+INPUT_END
+test_expect_success \
+ 'J: tag must fail on empty branch' \
+ 'test_must_fail git fast-import <input'
###
### series K
###