Reputation: 119
I have the following scenario:
I don't want to commit on master branch. How can have those changes made on the testing branch?
Upvotes: 0
Views: 38
Reputation: 9197
git checkout testing
or, if git refuses to do that
git stash
git checkout testing
git stash pop
Upvotes: 2