Interaction with Remotes
git pull
Merges remote branch into current branch.
It has two consecutive steps:
git fetch
git merge FETCH_HEAD
git pull
Merges remote branch into current branch.
It has two consecutive steps:
git fetch
git merge FETCH_HEAD