若是系統中有一些配置文件在服務器上作了配置修改,而後後續開發又新添加一些配置項的時候,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.
web
若是但願保留生產服務器上所作的改動,僅僅併入新配置項, 處理方法以下:服務器
git stash git pull git stash pop
而後能夠使用git diff -w +文件名 來確認代碼自動合併的狀況.
app
反過來,若是但願用代碼庫中的文件徹底覆蓋本地工做版本. 方法以下:oop
git reset --hard git pull
其中git reset是針對版本,若是想針對文件回退本地修改,使用
spa
[plain] view plaincopy.net
<EMBED id=ZeroClipboardMovie_1 height=18 name=ZeroClipboardMovie_1 type=application/x-shockwave-flash align=middle pluginspage=http://www.macromedia.com/go/getflashplayer width=18 src=http://static.blog.csdn.net/scripts/ZeroClipboard/ZeroClipboard.swf wmode="transparent" flashvars="id=1&width=18&height=18" allowfullscreen="false" allowscriptaccess="always" bgcolor="#ffffff" quality="best" menu="false" loop="false">rest
git checkout HEAD file/to/restore code
http://blog.csdn.net/iefreer/article/details/7679631
git經常使用命令
http://justcoding.iteye.com/blog/1830388