Tagged in

Visual Studio

Corrado Cavalli
Corrado Cavalli
I’m a Senior Software Engineer at Microsoft, former Xamarin/Microsoft MVP and, when not in front of a monitor, a passionate mountain biker and ski tourer.
More information
Followers
27
Elsewhere
More, on Medium

Learning Git with Visual Studio #6

In previous post we talked a lot about branches and all the stuff involved (merge, rebasing, cherry-pick) but we didn’t covered a quite simple scenario: You’re working on a branch, and while in the middle of an important refactoring you’ve to urgently move to a…


Learning Git with Visual Studio #5

In previous article I showed how to take changes from a branch into parent branch, visually we could imagine this operation like “copying” some files from a directory into his parent, but what if, while acting on a branch a colleague working on another branch fixes a…


Learning Git with Visual Studio #3

In this post we’re going to talk about History. 
In the previous post
we saw how to commit changes so that git can track them, but without an history browser this list of changes wouldn’t be available and we couldn’t do anything regarding commit history. 
Git of course…