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