6 lines
66 B
Bash
6 lines
66 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git add .
|
||
|
git commit -m "fixed"
|
||
|
git push origin master
|