两个git如何合并并保持一些差异?

时间:2012-02-21 04:19:20

标签: git merge

我有一个配置文件:

分支

url=http://somewhere.com

分支本地

url=http://localhost:8080

除了配置文件中的url值外,我想保持所有内容相同。

2 个答案:

答案 0 :(得分:1)

简单。在提交之前更改合并。

git checkout local
git merge --no-commit master
(edit url, change to http://localhost:8080)
git add .
git commit

如果有多个软件安装,将配置文件保存在存储库中通常是一个坏主意。

答案 1 :(得分:0)

您的配置文件应该在您的.gitignore中。