- 确保你当前位于要合并文件的源分支上。可以使用 git branch命令查看当前分支,并使用 git checkout命令切换到源分支。
- 使用 git checkout命令切换到目标分支,即你想要合并文件的分支。
- git checkout source_branch -- path/to/file
source_branch是包含要合并文件的源分支,path/to/file是要合并的文件路径。 - 提交合并的文件。使用 git add命令将文件添加到暂存区,然后使用 git commit命令提交文件的修改。
git add path/to/file
git commit -m "Merge file into target_branch"
确保替换 path/to/file为你实际要合并的文件路径,还可以根据需要自定义合并提交的消息。 - git push origin target_branch
确保将 target_branch替换为你的目标分支的名称。