/2 min read
Stash: git stash
Git Hygiene Checklist
0/4
Write meaningful commit messages
Use the imperative mood: 'Add login form' not 'Added login form'.
Pull before push
Avoid divergent histories that need merging.
Use .gitignore
Never commit build artifacts, secrets, or local config.
Branch per feature
One branch = one PR = one focused change.
Build Programming Foundations at Noble Desktop
Noble Desktop's Full-Stack Web Development Certificate teaches Git alongside the modern web stack — a must for any developer.
The Git Stash as a place to temporarily store that's not ready to be permanently stored in a commit. Let's say you're working on some code that you're not ready to commit. You get a request to make a change and push the code. What do you do with the other code you've been working on? You can stash it away, do your work, and bring the code back from the stash.