forked from mirrors/thatmattlove-hyperglass
8 lines
191 B
Bash
Executable file
8 lines
191 B
Bash
Executable file
#!/bin/bash
|
|
|
|
git_commit() {
|
|
git remote add origin https://${GH_TOKEN}@github.com/checktheroads/hyperglass.git > /dev/null 2>&1
|
|
git push --quiet --set-upstream origin master
|
|
}
|
|
|
|
git_commit
|