When conflicts arise after a rebase, Git requires you to ________ them before completing the rebase.
- Ignore
- Push
- Resolve
- Commit
The correct option is c. Resolve. When conflicts occur during a rebase operation, Git pauses and asks you to resolve the conflicts manually. After resolving conflicts, you need to continue the rebase process.
Loading...
Related Quiz
- In advanced Git hook usage, what is a practical application of a 'pre-receive' hook?
- To fix broken references in Git, the _______ command can be used to recover lost commits and branches.
-
The command git _______
is used to clone a remote repository to your local machine. - What does the git log command display in a Git repository?
- To maintain a clean Git history when transitioning, it's recommended to use git ________ for combining multiple commits.