git流程:从远程开发分支合并,并查看功能分支的变化?

git flow: merge from remote develop branch, and see changes in feature branch?

我正在使用 git 流。

我们从 master 分支了 develop,我从 develop 分支了 feature/INF-824。

我的一位同事添加了与 INF-824 相关的开发更改。

如何将他的更改合并到我的 develop 副本中,并在 feature/INF-824 中看到它们?

谢谢!

您可以从开发分支中挑选更改。

git cherry-pick <commit-ish>

Commit-ish 将是您想要在功能分支中提交的 SHA1-ID。

另一种选择是在您的功能分支上使用 rebase

git rebase feature branch

这可能是更好的解决方案,因为无论如何您都将在完成功能分支后将您的功能合并回开发中。