:)
我有一个生产* nix服务器,使用“git pull”从github获取更新文件。
我的问题是“app / code / community /”中的某些插件有过时的版本,这些插件会被拉出并覆盖我的本地(最新)文件和文件夹。
当我从github拉出来时,我不知道怎么告诉git只是忽略这个目录...有人可以帮帮我吗?
提前致谢!
克里斯
答案 0 :(得分:1)
您可以执行以下操作:
git pull
它将用旧版
git checkout --ours -- <filename>
将您的文件还原为您的版本
git add and commit
希望这能解决你的问题!
有关详细信息,请尝试执行:Simple tool to 'accept theirs' or 'accept mine' on a whole file using git
快乐的Gitting!