вторник, 11 января 2011 г.

How to apply local changes to another branch in git?


git stash
git checkout branch2
git stash pop
or
git stash
git checkout branch2
git stash list       # to check the various stash made in different branch
git stash apply x    # to select the right one

Комментариев нет:

Отправить комментарий