html tool

2019年5月8日星期三

转: 如何从其他分支merge个别文件或文件夹


问题:

在dev  branch ,想使用dev7 branch 的tool 目录全部最新内容

解决方式:

1. dev branch 提交修改,切换到临时的 dev_tmp branch
2. git checkout dev7 tool (git checkout <branch>  <file/dir_ph>)
3. git commit -a -m "tool for new"  # 将2中的全部修改都提交了,使用最新的
4. 切换回dev branch ,git merge dev_tmp #将临时分支的全部提交merge回当前分支即可


参考:

https://juejin.im/post/5adff0d0f265da0b7f4434dc

没有评论:

发表评论