gitのブランチで作業中にmasterをマージしたい時

gitのブランチ(branch)を利用中、masterに更新が入り、
その情報を現在作業中のブランチに取り込みたい(マージしたい)時。

git branch

で出てくる情報が

master
* nowwork

ということで、ブランチ(この場合はnowwork)である事を確認し、

git merge master

とすればよい。