Hello, thank you for reading. I would like to know if it’s possible to add a feature to export this list. Your list is very well made and much more efficient than git log (I have a repo with 180,000 commits and I want to see the number of files changed in each commit). However, I found that if I select and copy-paste using the right-click, the information about modified files is not included.
Hi @FIRE ICE
Welcome to the Atlassian Community!
You are correct. While Sourcetree is great for visualizing repository history and daily tasks, it doesn't support exporting a full table from the log UI. For a full export, like auditing or scripting, it's best to use the terminal and git log for efficiency.
You could use a command like this in the terminal and pipe it into a file:
git log --date=short --format="%h, %ad, %an, %s" --shortstat > export.txt
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.