mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
8 lines
195 B
Bash
Executable file
8 lines
195 B
Bash
Executable file
#!/bin/sh
|
|
if test -z $1
|
|
then
|
|
echo "log.sh <tag>"
|
|
else
|
|
git log $1..HEAD --pretty=format:"- %s" --grep fix
|
|
git log $1..HEAD --pretty=format:"- %s" --grep feature
|
|
fi
|