How to view deleted changes using TortoiseGit

I cannot figure out how to view remote changes using TortoiseGit.

Someone pushed some code to the server. I would like to see the changes before I do git pull. How can I see deleted changes using TortoiseGit?

I tried the "fetch" command, but when I do "Show log" after extraction, it does not show deleted changes.

+8
git tortoisegit
source share
2 answers

"Fetch" was the right command to retrieve all deleted changes without integrating / merging them.

Click "All branches" in the lower left corner of the log dialog box to show all branches (also deleted). Or click on the branch label in the upper left corner, and then select the branch (s) that you want to see in the log dialog box.

+8
source share

Just following the steps

  1. Fetch... new changes to the local image of the remote branch
    TortoiseGit > Fetch...
    Note: fetch will not affect your local working copy, saving it
  2. Show log to view history and show changes before merge
    TortoiseGit > Show log
    But by default Show log view log history of current local main branch
    And to view the history of the extracted remote branches
    We can do one of the following
    1. Choose your own history thread
      By clicking master the branch name in the upper left corner, then select the target branch
      enter image description here
    2. Select ALL branches
      Select the All Branches check box in the lower left.
      enter image description here

Following the history of the magazine listed
You can select any 2 commits in any branch and compare revisions.
Select both commits, then right click and select Compare revisions
enter image description here

0
source share

All Articles