9 lines
162 B
Bash
Executable File
9 lines
162 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REPO_DIR=~/Git/Webovky/katebartova
|
|
COMMIT_MESSAGE="Automatet commit"
|
|
|
|
cd $REPO_DIR
|
|
git add .
|
|
git commit -m "Updatuju webovky"
|
|
git push origin Webovky |