git fetch
New commits of
origin/master
branch will be downloaded locally with the same name
git fetch origin master
When the commits are downloaded, we can checkout and see if the change is OK to merge
git checkout origin/master
The two commands
git fetch origin master
git merge origin/master
are equivalent to command
git pull
by Valeri Tandilashvili
4 years ago
Git
1
Pro tip: use ```triple backticks around text``` to write in code fences