> I looked at this patch closely, and even imported and tried it out.
> But I cannot figure out what it is suppose to do.  Is there a problem
> this is solving?  Do you have a test case?

mkdir test
cd test

git init

git config --local user.email  email
git config --local user.name   name

echo "0" > 0
ITEMS=(1 2 3)

for i in ${ITEMS[@]}; do
  cp 0 $i
  git add $i
  git commit -m "$i"
  git tag -a tagNo$i -m "-"
done

git fast-export --all | fossil import --git new-repo.fossil

fossil ui new-repo.fossil

http://localhost:8080/taglist
Non-propagating tags:
    tagNo2

_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to