Senior
What git command can you use to fetch updates from a remote repository without merging them into your current branch?
sobes.tech AI
Answer from AI
The git fetch command allows you to retrieve updates from a remote repository without merging them into your current branch. It downloads new commits and updates remote branch references, but does not change the state of your working branch.
git fetch origin