git pull vs .git merge

In fact git pull combines two git commands: git fetch+git merge.

So the content is fetched from a remote repository and then merged to the local repository.

Wasn't event worth an article :)