Git question detail
What is the difference between git fetch and git pull?
git fetch downloads remote changes without modifying your current branch, while git pull performs fetch and then merges or rebases those changes into your current branch.
Git question detail
git fetch downloads remote changes without modifying your current branch, while git pull performs fetch and then merges or rebases those changes into your current branch.