1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00
vimr/bin/prepare_repositories.sh
Tae Won Ha 79c82ac458
Temp
2016-10-14 12:15:32 +02:00

16 lines
335 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"