Your Git complains that there is a link (not a directory) named refs/tags . It is not clear what to create this, but look if git rev-parse refs/tags creates a hash identifier. If so, this link should disappear:
git update-ref -d refs/tags
after which git fetch should work.
If git rev-parse refs/tags fails (which should be - refs/tags should not be the correct name), then this is not a problem, and it is not clear what the actual problem is.
torek
source share