Reputation: 4506
I am using TortoiseGit with a repository on Bitbucket. The problem is that when I make "show log" in TortoiseGit and even refresh the log I still don't see all the pushed commits in the repository. If I go to Bitbucket web page I can see them in the list of commits but they are not shown in the TortoiseGit log until I make a pull. Is there a way to see in TortoiseGit Log all the commits before making a pull ?
Upvotes: 0
Views: 1891
Reputation: 3111
Check the All Branches
checkbox (bottom-left corner) of Log Message dialog, see:
Upvotes: 1
Reputation: 22321
The Bitbucket web page runs in the server using the Git repositories located in the server so you're always looking to updated data. Your TortoiseGit runs locally using your local repositories, so you need to update the repository to see updated data. You can update your repository executing either a fetch or a pull. See more details about fetch and pull here.
Upvotes: 1