Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TortoiseGit: view dif for any of last commits

Tags:

tortoisegit

WinXP, TortoseGit installed, have a project. How can I view diff for any of recent commits, for my project? I can view dif for last commit, on pushing. But I want it for previous commits, eg for commits which happened week ago.

like image 721
Prog1020 Avatar asked Sep 14 '25 07:09

Prog1020


1 Answers

If you right-click in your repository root and select Tortoise Git -> Diff with previous version you can see the differences between versions. Click the down arrow on the RefBrowse buttons and select Log from the popup menu to access the commit log for both versions. That will allow you to go through the project history and choose revisions from the past.

enter image description here

You can see what files have changed in the lower part of the screen and then right-click on individual files and show individual changes between versions.

like image 52
Malice Avatar answered Sep 17 '25 20:09

Malice