8 lines
137 B
Bash
Executable file
8 lines
137 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
branch_name=$(git rev-parse --abbrev-ref HEAD)
|
|
|
|
git push -u github "$branch_name"
|
|
git push -u origin "$branch_name"
|