📄️ Git Stash
Git stash is an important and useful feature in Git that allows you to save changes that you don't want to commit immediately. It takes your modified tracked files, stages changes, and saves them on a stack of unfinished changes that you can reapply at any time.
📄️ Git Rebase
Understanding Git Rebase
📄️ Git Cherry-pick
Git Cherry-pick is an advanced Git command that allows you to pick a commit from one branch and apply it onto another. This is extremely useful when you have made a commit on the wrong branch and need to move it to the right one.
📄️ Git Bisect
Introduction to Git Bisect