10 lines
141 B
Bash
Executable file
10 lines
141 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "git pull"
|
|
git pull origin
|
|
echo "git add"
|
|
git add .
|
|
echo "git commit"
|
|
git commit -am "up!"
|
|
echo "git push"
|
|
git push origin
|