10 lines
61 B
Bash
Executable File
10 lines
61 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
git pull --rebase
|
|
|
|
git commit
|
|
|
|
git push
|