Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 514 Bytes

git-stash.md

File metadata and controls

26 lines (15 loc) · 514 Bytes

Stash uncommited changes

This will stash all the uncommited changes

git stash save {{COMMENT_MESSAGE}}

  • COMMENT_MESSAGE: Message needs to be added to the stash. This is optional

Example:

git stash

with comment message

git stash save "saving ak-cli stash"

Demo

Git Stash

Related