mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 10:45:47 +00:00
feature(shell) add log
This commit is contained in:
parent
e10419afb6
commit
17eb392562
1 changed files with 9 additions and 0 deletions
9
shell/log.sh
Executable file
9
shell/log.sh
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
if test -z $1
|
||||
then
|
||||
echo "log.sh <tag>"
|
||||
else
|
||||
git log $1..HEAD --pretty=format:"* %s" --grep feature
|
||||
git log $1..HEAD --pretty=format:"* %s" --grep fix
|
||||
git log $1..HEAD --pretty=format:"* %s" --grep refactor
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue