1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-27 15:53:31 +03:00
vimr/bin/prepare_repositories.sh

16 lines
335 B
Bash
Raw Normal View History

2016-10-14 13:15:32 +03:00
#!/bin/bash
echo "### Preparing repositories"
# ## delete all (local) tags
git tag | xargs git tag -d
# ## 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"