Skip to main content
You use the log command to get the list of commits in your repository.
dv log [path] [-n <num_results>] [--oneline] [--since <date>] [--until <date>] [--date <format>]
[path] filters commits to only those affecting a specific file or directory. [-n <num_results>] limits the number of commits shown (default 20, max 1000). [--oneline] shows each commit on a single line. [--since <date>] shows commits after a date (ISO format or relative like 1 week ago). [--until <date>] shows commits before a date. [--date <format>] sets the output date format. Use iso for ISO 8601 UTC. An example of fetching the last ten commits:
dv log -n 10
To see commits affecting a specific file:
dv log path/to/file.uasset
To see recent commits in compact format:
dv log --oneline --since "2 weeks ago"