mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
9 lines
193 B
Bash
9 lines
193 B
Bash
|
#!/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()
|