Git stash, pop, and apply in Visual Studio

Partial, half-baked, or otherwise incomplete work is inevitable in the lifespan of a developer. Fortunately, git offers a few ways out-of-the-box to manage temporary work you’re not quite ready to commit. First, a few definitions: Stash – a unit of temporarily uncommitted/staged changes Pop – apply a stash and delete the stash Apply – apply… Read more Git stash, pop, and apply in Visual Studio

Cloning Git Repositories in Visual Studio Team Explorer

There are endless code repositories out there, and you can access them with a simple URL. For example, a repo hosted on Github might look like: https://github.com/PowerShell/PowerShell.git Note the .git extension at the end. That URL is the location of a repository i.e. a bunch of code and history of commits/developers that have worked on… Read more Cloning Git Repositories in Visual Studio Team Explorer