Reputation: 45
I have created a local branch by:
git checkout -b "something"
Now I want to apply my stash onto it. How do I do it?
Upvotes: 0
Views: 46
Reputation: 7823
Stash doesn't care what branch you are on, so just git stash pop
as usual
Upvotes: 4