5 lines
62 B
Bash
5 lines
62 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
git add -A
|
||
|
git commit -m "update"
|
||
|
git push
|