7 lines
136 B
Plaintext
7 lines
136 B
Plaintext
|
#!/bin/bash
|
||
|
BRANCH=$1
|
||
|
git checkout -b "$BRANCH"
|
||
|
git checkout "$BRANCH"
|
||
|
git branch --set-upstream-to=origin/"$BRANCH" "$BRANCH"
|
||
|
git pull
|