我有一个配置文件:
分支主:
url=http://somewhere.com
分支本地:
url=http://localhost:8080
除了配置文件中的url
值外,我想保持所有内容相同。
答案 0 :(得分:1)
简单。在提交之前更改合并。
git checkout local
git merge --no-commit master
(edit url, change to http://localhost:8080)
git add .
git commit
如果有多个软件安装,将配置文件保存在存储库中通常是一个坏主意。
答案 1 :(得分:0)
您的配置文件应该在您的.gitignore中。