lbry-desktop/reset.sh
2017-03-06 10:34:37 -06:00

21 lines
323 B
Bash
Executable file

#! /bin/bash
set -eu -o xtrace
pushd lbry
git tag -d $(git describe)
git reset --hard origin/master
popd
pushd lbry-web-ui
git tag -d $(git describe)
git reset --hard origin/development
popd
pushd lbryum
git tag -d $(git describe)
git reset --hard origin/master
popd
git tag -d $(git describe)
git reset --hard HEAD~1