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