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

Using Azure DevOps to automagically release .NET Core apps

“Rub a little devops on it” – Donovan Brown No idea if Donovan coined this phrase, but he says it in a lot of his videos. I also originally misquoted this–apologies! So, Azure DevOps and all its components are pretty badass. From File-new-project to deployed to Azure with continuous integration in minutes. No joke. I started screwing… Read more Using Azure DevOps to automagically release .NET Core apps

Yet Another Post About Things To Know Before Becoming A Developer

Disclaimer: I ripped this from an old blog post of mine and updated (I hope) the relevant bits. Yes, another one of these posts. I’ve read several, and each one has its merits. So, I decided to write my own. If you’re interested in software development in some capacity, this is probably worth a read.… Read more Yet Another Post About Things To Know Before Becoming A Developer