From: Dmitry Ivankov Date: Thu, 22 Sep 2011 19:47:04 +0000 (+0600) Subject: fast-import: don't allow to tag empty branch X-Git-Tag: v1.7.8-rc0~87^2~1 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c?hp=2c9c8ee2de3fc6af5a28cbeec15edcf9fe43537c 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 Signed-off-by: Junio C Hamano ---