Command of Git Stash

Thanks to git stash, provide to stash the changes in a dirty working directory away.

1
git stash
1
git flow feature start your_feature_name
1
git stash pop  // move to your_feature_name
1
git stash list
1
git stash drop
1
git stash branch

That’s all. I hope helped to you.

Comments