我是git的新手。我和开发部门工作。我需要将一个文件合并到我的本地仓库中的主分支,然后检查主文件。我该怎么做?
我在guthub作弊表上看到了这一点,但是qhute到nkt看到了逻辑。
git merge laptop/xyz
所以如果文件myfile那么
git merge myfile master/origin?
答案 0 :(得分:3)
按照以下步骤操作:
1) git branch
* master
your_new_brach
2) git checkout your_new_brach my_file1 my_file2 my_file3
3) git status # You will see new changes into master branch
4) git commit -m "'Merge' changes from 'your_new_brach' branch"
我认为链接类似于您的问题: How do you merge selective files with git-merge?