git status を実行すると:
# On branch new-media
# Changes not staged for commit:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: .gitignore
# modified: app/views/layouts/application.html.erb
次に、マスターをチェックアウトします。git checkout master
M .gitignore
M app/views/layouts/application.html.erb
Switched to branch 'master'
以前は、git によって他のブランチのチェックアウトが停止され、現在のブランチに加えた変更を stash するか commit するように求められました。今はそうではありません。