Bird
0
0

After encountering conflicts during a rebase, which command should you run to continue the process once conflicts are resolved?

medium📝 Troubleshoot Q6 of 15
Git - Rebasing
After encountering conflicts during a rebase, which command should you run to continue the process once conflicts are resolved?
Agit rebase --continue
Bgit rebase --abort
Cgit merge --continue
Dgit reset --hard
Step-by-Step Solution
Solution:
  1. Step 1: Resolve conflicts

    Manually fix the conflicting files in your working directory.
  2. Step 2: Continue rebase

    Run git rebase --continue to tell Git to proceed with the rebase after conflict resolution.
  3. Final Answer:

    git rebase --continue -> Option A
  4. Quick Check:

    Use git rebase --continue after fixing conflicts [OK]
Quick Trick: Run 'git rebase --continue' after resolving conflicts [OK]
Common Mistakes:
  • Using 'git rebase --abort' which cancels the rebase
  • Trying 'git merge --continue' during rebase
  • Resetting hard and losing changes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Git Quizzes