Git Merge vs Rebase: Part 3 - What is a rebase? Table of Contents:Part 1 - What is a commit hash?Part 2 - What is a merge?Part 3 - What is a rebase?In part 1 we discussed what a commit
Git Merge vs Rebase: Part 2 - What is a merge? Table of Contents:Part 1 - What is a commit hash?Part 2 - What is a merge?Part 3 - What is a rebase?In part 1 we left off with a
Git Merge vs Rebase: Part 1 - What is a commit hash? Table of Contents:Part 1 - What is a commit hash?Part 2 - What is a merge?Part 3 - What is a rebase?One of the biggest things I struggled with
Git Tips for the Git Power User After developing for so long working with Git has become second nature to me. I started out using a graphical Git client for Windows called Git Extensions. Git Extensions was great for starting
Git "vpub" bash function that automatically increments your project's version number, pushes to git, and publishes to npm. Just paste this function into your .bash_profile. function vpub() { npm version $1; git push origin master; npm publish; } Then you'll be able to do vpub patch/minor/major and it will: Automatically
Windows Server 2012 Hosting Node.js Applications on Windows Server 2012, Complete with Git Deployment and Remote Debugging - Part 3 Quick LinksPart 1 - Setting up Virtual MachinePart 2 - Installing IIS, Git, Node.js, and IISNodePart 3 - Installing KuduUnfortunately, Kudu doesn't have a fancy installer like everything else we've installed so
Git Simplified Git Process My team recently switched from SVN to Git and it has been more difficult to transition than I had expected. I realized that I had some misconceptions about the way Git operates. For
Git Comprehensive .gitignore for .NET Projects If you are a .NET developer that uses source control then you know what a pain it can be sometimes to remember all the files you have to ignore. In SVN I would
Git Installing Git on Windows In a recent post I outlined a new development workflow that my team is adopting using Git. I've been using Git for my own projects for several days now and I finally feel
Git Development Workflow With Git My development team is considering alternatives to our current version control system (SVN). Over the weekend I decided to take the opportunity to read up on Git. I've had my eye on Git