Resolving a merge conflict when I do svn update

前端 未结 3 1165
-上瘾入骨i
-上瘾入骨i 2021-02-01 03:16

I am trying to learn basics of version control by Eric Sink - http://ericsink.com/vcbe/vcbe_usletter_lo.pdf

I am on page 22 now. I\'ll describe the scenario for you. Two

3条回答
  •  萌比男神i
    2021-02-01 04:08

    The "G" indicates that the file was modified by somebody else, but the modifications that person did were in a different part of the file, so SVN could merge it for you without asking for help.

    The "C" indicates that not only was the file modified by somebody else, but their changes were to the same lines you also changed, so SVN doesn't know what to do. Now it's YOUR job to do the merge.

    You probably didn't do anything wrong, and the book isn't wrong, they just left out the detail on what the specific changes were, apparently.

提交回复
热议问题