9 lines
107 B
Bash
Executable File
9 lines
107 B
Bash
Executable File
|
|
git pull
|
|
git log
|
|
message="$(git log)"
|
|
$message
|
|
if [[ $message == *"__post__"* ]]; then
|
|
"It's there!"
|
|
fi
|