Different configs in each git branch

非 Y 不嫁゛ 提交于 2020-01-02 23:47:10

问题


I have two git branches: dev and master

I'm using Travis CI for builds and testing and need to have different .travis.yml and config.yml.enc (encrypted config file) for each branch/environment.

How do I merge changes from dev->master without merging the .travis.yml and config.yml.enc files?


回答1:


You have multiple options here (on master branch):

You can either run:

git merge --no-commit dev

git checkout .travis.yml

git checkout config.yml.end

git commit -m "merge dev into master"

This will merge the files then revert the two files to the last master commit.

Or you can run (if your commit history is setup this way):

git cherry-pick commit_hash

Adding commits where the files are not modified.



来源:https://stackoverflow.com/questions/25356149/different-configs-in-each-git-branch

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!