11 lines
206 B
Bash
Executable file
11 lines
206 B
Bash
Executable file
#!/bin/bash
|
|
#ack="guncelleme"
|
|
ack=$1
|
|
git remote add upstream https://notabug.org/milislinux/milis.git
|
|
git fetch upstream
|
|
git pull upstream master
|
|
|
|
|
|
git add .
|
|
git commit -a -m "$ack"
|
|
git push origin master
|