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-10-15 09:38:47 +02:00

16 lines
326 B
Bash
Executable File

#!/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"