Git - Remote Repositories
Given the following commands run in a Git repository:
What happens after these commands?
git checkout feature
git pull origin main
What happens after these commands?
git checkout feature
git pull origin main
git checkout feature switches the current branch to feature.git pull origin main downloads changes from the main branch on the remote origin and merges them into the current branch, which is feature.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions