7 lines
198 B
Bash
Executable file
7 lines
198 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
LAST_TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
|
|
./.venv/repo forall -pc "git diff ERPLibre/${LAST_TAG}..HEAD"
|
|
|
|
# For actual repo
|
|
git diff ${LAST_TAG}..HEAD
|