move bin to .local/bin

This commit is contained in:
2023-09-15 15:46:04 -04:00
parent 8dbe941cb1
commit ab4eb15648
18 changed files with 244 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/sh
if [ $# -eq 1 ]; then
branch=$1
git fetch upstream master
git checkout upstream/master
git checkout -b "$branch"
else
echo "Please specify new branch."
fi