The command "git pull" is equivalent to "git fetch" followed by _______.

  • git branch
  • git commit
  • git merge
  • git push
The command "git pull" is equivalent to "git fetch" followed by git merge. This combination fetches changes from the remote repository and merges them into the current branch. It helps in keeping your local branch up-to-date with the remote branch.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *