Posts by Dio • 301 points
1 post
-
20
votes3
answers74263
viewsA: What is the difference between the 'git pull' and 'git fetch' commands?
In a simple way, the git fetch searches for differences with the current branch, but does not change anything in this branch. Already git pull does the git fetch and merge the differences.…