Hi! Colin Baxter <m43...@yandex.com> writes:
>>>>>> Nick Dokos <ndo...@gmail.com> writes: > > > FWIW, I get $ git remote -v upstream > > https://git.savannah.gnu.org/git/emacs/org-mode.git (fetch) > > upstream https://git.savannah.gnu.org/git/emacs/org-mode.git > > (push) > > > $ git tag | wc -l 386 > > > Maybe do > > > $ git remote update $ git rebase > > > and try again? > > Doesn't work for me. I did all above but still get zero for git tag | wc What about adding the still existing Org repo temporarily and fetching the tags from there? Example: cd PATHTOORGMODE git remote -v git remote add olderrepo https://code.orgmode.org/bzg/org-mode.git git remote -v git fetch olderrepo 'refs/tags/*:refs/tags/*' git remote remove olderrepo git remote -v Enjoy the tags in your local repo! I guess the maintainers will push the right tags to the new repo soon.