1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-28 08:13:17 +03:00
vimr/bin/prepare_repositories.sh
2016-11-04 21:41:36 +01:00

22 lines
380 B
Bash
Executable File

#!/bin/bash
set -e
echo "### Preparing repositories"
# delete all (local) tags
git tag | xargs git tag -d
pushd neovim
git tag | xargs git tag -d
popd
# delete all (local) branches
git for-each-ref --format="%(refname:strip=2)" refs/heads/ | xargs git branch -D
git checkout -b for_build
# update neovim
git submodule update --init --force
echo "### Prepared repositories"