mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 19:47:41 +03:00
e7b002cc96
branch
23 lines
387 B
Bash
Executable File
23 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
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"
|