3 lines
74 B
Bash
Executable file
3 lines
74 B
Bash
Executable file
#!/bin/sh
|
|
# Push HEAD to a new branch in origin
|
|
git push origin "HEAD:$1"
|