add switch to master script

This commit is contained in:
Adeeb Shihadeh
2021-09-14 16:27:11 -07:00
parent 6102daa2b1
commit 082bbc9d27

16
scripts/switch_to_master.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )"
cd $DIR/..
git clean -xdf .
git rm -r --cached .
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
git fetch origin master
git checkout master
git reset --hard
git submodule update --init
printf '\n\n'
echo "master checked out. reboot to start building openpilot master"