Added the gswitch

This commit is contained in:
Marcin Woźniak 2023-03-02 11:03:59 +01:00
parent b08f30b713
commit 9caf4a2ff3

6
.local/bin/gswitch Executable file
View File

@ -0,0 +1,6 @@
#!/bin/bash
BRANCH=$1
git checkout -b "$BRANCH"
git checkout "$BRANCH"
git branch --set-upstream-to=origin/"$BRANCH" "$BRANCH"
git pull