Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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.

...