mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-28 07:51:31 +00:00
16 lines
236 B
Bash
Executable file
16 lines
236 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -eu -o xtrace
|
|
|
|
pushd lbry
|
|
git tag -d $(git describe)
|
|
git reset --hard origin/master
|
|
popd
|
|
|
|
pushd lbryum
|
|
git tag -d $(git describe)
|
|
git reset --hard origin/master
|
|
popd
|
|
|
|
git tag -d $(git describe)
|
|
git reset --hard HEAD~1
|