Git - Remote Repositories
To inspect remote changes before integrating them into your local branch, which command sequence is best?
git fetch origin updates remote tracking branches without merging.git diff origin/main shows changes between local and remote branch.git pull merges immediately (B), merging without fetch risks conflicts (C), cloning again is unnecessary (D).15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions