Question 34 out of about 40
Which of the following is NOT a common reason for opening a pull request, as opposed to
directly pushing commits?
Select the correct answer:
tore automated tests
to modly the merge history
to provide an opportunity for code review
contributions from users without write permissions
Answers
Answered by
0
Answer:
option-b
Explanation:
to modify merge history .
knowing that pull is the same as fetch (which updates the remote-tracking branch origin/master that is stored locally on my PC) followed by merging the updated origin/master into the local branch master, would it produce the same result in this case - would that merge alter the order of past commits in the local master branch
#SPJ2
Similar questions