myhome/.local/bin/gswitch
Marcin Woźniak afaf1ba687 Added the git push with origin
Signed-off-by: Marcin Woźniak <marcin.wozniak@wundermanthompson.com>
2023-04-21 06:50:51 +02:00

8 lines
177 B
Bash
Executable File

#!/bin/bash
BRANCH=$1
git checkout -b "$BRANCH"
git checkout "$BRANCH"
git branch --set-upstream-to=origin/"$BRANCH" "$BRANCH"
git pull
git push --set-upstream origin "$BRANCH"