7 lines
95 B
Text
7 lines
95 B
Text
|
|
#!/bin/bash
|
||
|
|
#ack="guncelleme"
|
||
|
|
ack=$1
|
||
|
|
git add .
|
||
|
|
git commit -a -m "$ack"
|
||
|
|
git push origin master
|