dcchambers / vb4c

vb4c has been archived - please direct all conversation to the original cVim project page: https://github.com/1995eaton/chromium-vim
MIT License
141 stars 13 forks source link

Rename cvim tags #8

Open tinywrkb opened 4 years ago

tinywrkb commented 4 years ago

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