4 lines
74 B
Text
4 lines
74 B
Text
|
#!/bin/sh
|
||
|
# Push HEAD to a new branch in origin
|
||
|
git push origin "HEAD:$1"
|