Thanks to Matt Frear for pointing out that my original answer would
reset the entire solution to a specific commit, whereas the question
was how to use a specific version of one file while keeping the
latest of everything else. Keeping the original post contents at the
bottom, in case someone finds that useful.
To keep your entire solution at the latest, but use an older version of an individual file:
Using Visual Studio 2015 Update 3:
I will add screenshots and clean-up/reformat the answer to be easier to follow, but I wanted to get an amended answer out there which addresses the question more accurately until I have time to revisit it.
- View History on the branch (Team Explorer → Branches → right-click on branch)
- Right-click on the desired commit and select Reset → Reset and Keep Changes (--mixed).
Your local code will still be what is in the latest commit, but all changes since the desired commit will be shown as pending changes in Team Explorer → Changes. Your branch pointer is now on the commit that you reset on, but the code is still what is in the commit you started with (latest commit).
- Go to Team Explorer → Changes, right-click on the file for which you want to use the version in the desired commit and select "Undo Changes...". This will revert that file to the commit that you reset on - undoing back to what is in that commit.
You will now have the latest of every file in the repository except for the file that you just undid the changes on. You could now reset mixed again on the latest commit to see only the one file that you are using the old version of in Team Explorer → Changes, but if all you're trying to do is run the solution, this step is unnecessary.
To reset the entire solution/source repository to a specific commit:
Using Visual Studio 2015 Update 3:
IMPORTANT
With this approach, any outgoing commits will be lost.
Make sure to perform step 1 (push any outgoing commits)
- Make sure you don't have any outgoing commits - perform a Push, if you do have outgoing commits (*Team Explorer → Sync → Outgoing Commits)
- View History on the branch (Team Explorer → Branches → right-click on branch)
Right-click on the desired commit and select Reset → Reset and Delete Changes (--hard).
.
In Team Explorer → Sync and then in the View History window, you will end up with incoming commits from the desired commit to the latest commit in the remote branch, and your local code will match the desired commit.
When you're done, perform a pull in Team Explorer → Sync to bring your local branch to the remote branch's latest commit.
See this great answer which explains the 'git reset' command and the difference between --hard vs --mixed.