Replies: 1 comment
|
git fetch: Downloads the latest changes from the remote without updating your local branch. It lets you review updates before merging. git pull: Downloads changes and automatically merges them into your current branch. It is basically |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
git fetch: Downloads the latest changes from the remote without updating your local branch. It lets you review updates before merging.
git pull: Downloads changes and automatically merges them into your current branch. It is basically
git fetch+git merge.