Illumina interview question

What is the difference between "git fetch" and "git pull"?

Interview Answer

Anonymous

Dec 15, 2021

git fetch will get any new branches created, while git pull will get the latest changes from master

3