HelloWindowsPhone
HelloWindowsPhone

Reputation: 700

Visual Studio 2015 git not show all history, just first commit

I create some test commits and push to Visual Studio Online (VSO), however if I right click on solution and view history, it just show first commit but on VSO I can view all. I checked some old projects, this problem still happen. Any one have solution?

enter image description here

enter image description here

Upvotes: 2

Views: 716

Answers (1)

PatrickSteele
PatrickSteele

Reputation: 14687

You're right-clicking on the solution so Visual Studio is only showing you history of changes to the .SLN file. I know, it's kind of annoying. I use git with VSTS (formerly Visual Studio Online) as well, but I use a combination of SourceTree and command-line for my git stuff. I'm just not a fan of the git integration in Visual Studio.

A similar question was posted on Stack Overflow and that led to an answer on how to do this with the command-line.

Upvotes: 4

Related Questions