...
git log --reverse --pretty=format:'%h, %an, %s' --abbrev-commit <sqlScmLastImportID>..HEAD
By default, git log
collects all commits starting from the current branch tip and traverses back through all ancestors. It will return all reachable commits in the current branch’s history.
\uD83D\uDCCB Related articles
...