mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-24 15:00:31 +08:00
Co-authored-by: nilbuild <4921183+nilbuild@users.noreply.github.com>
655 B
655 B
Git Stash Basics
Git stash temporarily saves uncommitted changes so the working directory can be cleaned without committing incomplete work. The command git stash saves the current changes and reverts the working directory to match the last commit, while git stash pop restores them later. This is useful when a developer needs to quickly switch branches or pull updates without losing in-progress work.
Visit the following resources to learn more: