vb4c icon indicating copy to clipboard operation
vb4c copied to clipboard

Rename cvim tags

Open tinywrkb opened this issue 5 years ago • 0 comments

~~Releases are not tagged.~~ I recommend using this chance to rename the cvim tags as there's only a single fork for vb4c atm.

#!/bin/bash

for tag in $(git tag -l); do
  git tag cvim-$tag $tag
  git tag -d $tag
done

for tag in $(git tag -l); do
  git push origin :refs/tags/${tag#cvim-}
done

git push --tags

tinywrkb avatar Mar 24 '20 19:03 tinywrkb