Resolving a merge conflict when I do svn update

前端 未结 3 1141
-上瘾入骨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条回答
  •  感情败类
    2021-02-01 04:04

    If you select the s option it will show you:

    (e)  edit             - change merged file in an editor
    (df) diff-full        - show all changes made to merged file
    (r)  resolved         - accept merged version of file
    
    (dc) display-conflict - show all conflicts (ignoring merged version)
    (mc) mine-conflict    - accept my version for all conflicts (same)
    (tc) theirs-conflict  - accept their version for all conflicts (same)
    
    (mf) mine-full        - accept my version of entire file (even non-conflicts)
    (tf) theirs-full      - accept their version of entire file (same)
    
    (p)  postpone         - mark the conflict to be resolved later
    (l)  launch           - launch external tool to resolve conflict
    (s)  show all         - show this list
    

    Use dc to view the confilicts then you can decide on the best option to use

提交回复
热议问题