Git Stash vs Worktree: 4 Patterns for Context Switching
The Problem: Stash Breaks on Uncommitted Index State You're mid-refactor, three files...
Tag archive
The Problem: Stash Breaks on Uncommitted Index State You're mid-refactor, three files...

When you're working on a project, it’s very common to start coding something and suddenly realize you...

When working on a Git project, there are times when you need to switch tasks quickly or temporarily...

Being a junior software engineer in a team means dealing with a shared code repository, and Git is a...
git stash Enter fullscreen mode Exit fullscreen mode git stash is a...
CASE: We sometimes tend to forget to checkout to a newer clean branch created from the master branch (yes, I did that) and make changes in the same branch which we currently are. Then we suddenly realize the new changes must be in the newer branch (yes I did realize that when I made that mistake). For that, we have GIT STASH to the rescue

While working on a feature in a project, Do you ever felt any one of the following scenarios? Oh! I...

10 Tips you should know about Git Stash Assume you are working on a complex feature that...