user2695258
user2695258

Reputation: 45

Applying stash in a local branch

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

Answers (1)

Oliver Matthews
Oliver Matthews

Reputation: 7823

Stash doesn't care what branch you are on, so just git stash pop as usual

Upvotes: 4

Related Questions