#!/bin/bash
set -e
. tests/lib

t-tstunt-parsechangelog
t-prep-newpackage example 1.0

cd $p
revision=1
t-dgit build
t-dgit push --new

tagref=`t-v-tag`
tagname=${tn#refs/tags}

(set -e
 cd $dgitrepo
 git tag -m UNWANTED unwanted dgit/sid)

fetch-check () {
	t-dgit fetch
	t-ref-same-exact $tagref
	t-refs-notexist refs/tags/unwanted
	git rev-parse refs/dgit-fetch/sid/tags/unwanted
}

t-ref-same-exact $tagref
fetch-check

git tag -d $tagname
fetch-check

git tag -f -m BOGUS $tagname HEAD
t-refs-same-start
t-ref-same-exact $tagref
fetch-check

echo done.
