↧
Git Tips & Tricks, Part 7–Move Commits Between Branches with ‘cherry-pick’
One of my favorite git features is the ability to grab a commit and re-apply it on a different branch. In this post, I’ll show you how to do this with the ‘cherry-pick’ command.My team and I use a...
View ArticleGit Tips & Tricks, Part 8–See What’s Changed (again!)
I showed you one way that you can quickly see what’s changed back in Part 6 by comparing two commits. You can also see what changed in a specific commit and fire up your git diff tool for each change....
View ArticleGit Tips & Tricks, Part 9–Find That Bug with Bisect!
Have you ever found a bug in your application, but been unable to find exactly *where* that bug was in your code? Without this important bit of knowledge, it’s difficult to properly shame the...
View Article