DEV Community

Discussion on: Git Commands ( to ease your development 🤗 )

Collapse
 
dakdad profile image
Asanka

Good summary for useful basic git commands.

git stash pop only retrieves the first item (stash@{0}) from the stash list and then the index is refreshed (stash@{1} if it was there becomes the stash@{0} to take the place of the one popped out)

Collapse
 
shivam164 profile image
Shivam

Thanks for correction, done updating. 👊