6 lines
116 B
Bash
Executable file
6 lines
116 B
Bash
Executable file
#!/bin/bash
|
|
mv -f config-file ../config-file
|
|
git add .
|
|
git commit -m "$1"
|
|
git push
|
|
mv -f ../config-file config-file
|