lbry-desktop/reset.sh

22 lines
323 B
Bash
Raw Normal View History

2017-03-06 17:34:37 +01:00
#! /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