Git:代碼衝突常看法決方法

若是系統中有一些配置文件在服務器上作了配置修改,而後後續開發又新添加一些配置項的時候,php

在發佈這個配置文件的時候,會發生代碼衝突:git

error: Your local changes to the following files would be overwritten by merge:
        protected/config/main.php
Please, commit your changes or stash them before you can merge.服務器

若是但願保留生產服務器上所作的改動,僅僅併入新配置項, 處理方法以下:spa

git stash
git pull
git stash pop

 

而後能夠使用Git diff -w +文件名 來確認代碼自動合併的狀況..net

 

反過來,若是但願用代碼庫中的文件徹底覆蓋本地工做版本. 方法以下:rest

git reset --hard
git pull

 

其中git reset是針對版本,若是想針對文件回退本地修改,使用code

  1. git checkout HEAD file/to/restore


     開發

 

git clone http://帳號:密碼@倉庫get

 

git branch -a,列出全部分支名稱it

git checkout -b dev origin/dev,做用是checkout遠程的dev分支,在本地起名爲dev分支,並切換到本地的dev分支

相關文章
相關標籤/搜索