# Checkout the topic branchgit checkout topic-branch-1
# Create a _test_ branch on top of thisgit checkout -b test
# Attempt to merge mastergit merge master
# If it fails you can abandon the mergegit merge --abortgit checkout -git branch -D test # we don't care about this branch really...
努力解决冲突。
# Checkout the topic branchgit checkout topic-branch-1
# Create a _test_ branch on top of thisgit checkout -b test
# Attempt to merge mastergit merge master
# resolve conflicts, run it through tests, etc# thengit commit <conflict-resolving>
# You *could* now even create a separate test branch on top of master# and see if you are able to mergegit checkout mastergit checkout -b master-testgit merge test