マージ

$ git merge test   # "test" ブランチを現在のブランチにマージ
$ git pull git://example.com/project.git master
                   # リモートブランチの変更を取得し、マージ
$ git pull . test  # git merge test と同じ