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