When managing divergent branches in Git, what is the recommended approach to reconcile them?
A) Use Git merge to integrate changes from one branch into another.
B) Utilize Git rebase to move or combine a sequence of commits onto a new base commit.
C) Employ Git cherry-pick to apply specific commits from one branch to another.
D) Execute Git reset to undo changes in the current branch to a specific point in history.



Answer :

Other Questions