Search⌘ K

Choosing Your Stash

Explore how to manage multiple stashes in Git by learning to view detailed changes, apply specific stash entries, and remove them when no longer needed to maintain a clean working state.

Now, you have two changes in your stash’s stack.

Applying two stashes

Type this sequence out. It will stash two similar-looking changes.

1	mkdir lgthw_git_stash_2
2	cd lgthw_git_stash_2
3	git init
4	echo 'Some content' > file1
5	git add file1
6	git commit -am initial
7	echo 'First changes I am not sure about' >> file1
8	git
...