1/13/2024[edited at: 1/14/2024]
Git fetch and git pull
Tags: git
git fetch
loads the changes on the server to the branch remote/origin. After examining the changes carefully, you can merge them into your local branch.
git pull
combines git fetch
and git merge
into one command.