获取自最后一个tag以来的所有git提交(Get all git commits since last tag)

git log "$(git describe --tags --abbrev=0)..HEAD" --oneline

git log "$(git describe --tags --abbrev=0)..HEAD" --oneline --pretty=format:%s


git log "$(git describe --tags --abbrev=0)..HEAD" --oneline

git log "$(git describe --tags --abbrev=0)..HEAD" --oneline --pretty=format:%s
