7 lines
80 B
Bash
7 lines
80 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
git add . && git commit -m "Update"
|
||
|
git push --force
|
||
|
|
||
|
echo "Ready"
|