Different configs in each git branch

百般思念 提交于 2019-12-07 07:23:39

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.

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