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