Closed bplimley closed 7 years ago
If a new branch is created and git-pull-reboot.sh tries to checkout the branch, currently it will error because the branch does not exist in the local repo yet. I think an additional git pull is needed before git checkout. To be tested.
git-pull-reboot.sh
git pull
git checkout
If a new branch is created and
git-pull-reboot.sh
tries to checkout the branch, currently it will error because the branch does not exist in the local repo yet. I think an additionalgit pull
is needed beforegit checkout
. To be tested.