6 lines
78 B
Bash
6 lines
78 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
git add .
|
||
|
git commit -m 'update'
|
||
|
git push -f origin master
|