A simple CLI tool to explore Git repositories using git2.
Made for studying clap.
- Show commit history
- Show contributions (author, email, message)
- Sort options: time, reverse
# Show commit history,
# Sorted by commit time (newest first, DEFAULT)
gitrail.exe history --path <REPOSITORY_PATH>
# Show contributions,
# Sorted by commit time (oldest first)
gitrail.exe contrib --path <REPOSITORY_PATH> --sort time --sort reverse