2

我是 git 新手。我在开发分支工作。我需要将一个文件合并到本地 repo 中的 master 分支,然后签入 master。我怎么做?

我在 Guthub 备忘单上看到了这一点,但对 nkt 来说很清楚其中的逻辑。

git merge laptop/xyz

所以如果文件 myfile 然后

git merge myfile master/origin?
4

1 回答 1

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"

我认为链接类似于您的问题: 如何将选择性文件与 git-merge 合并?

于 2012-04-10T11:01:48.500 回答