Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 409 Bytes

conflict.md

File metadata and controls

17 lines (12 loc) · 409 Bytes

觀念解說:解決衝突 (conflict)

如果遠端 repo 跟 本地端 repo 在同個地方(同行)都發生修改的情況下,這時會導致 Git 無法自動判斷,那一份才是正確的,於是發出衝突緊訊告知使用者需要手動排解衝突。

發生衝突時,執行 git diff 可以看到類似。

<<<<<<< HEAD
123 456

hello world
=======
123 789

hello world
>>>>>>> dev