本文介绍了如何更新 bitbucket 上的拉取请求?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您如何在本地计算机上的 IDE 中更新自己对 bitbucket 的拉取请求之一?

How do you update one of your own pull requests on bitbucket in your IDE on your local computer?

这个工作流程不像我预期的那样工作:

This workflow does not work as i expected:

  1. 克隆你的分叉
  2. 检查您用于拉取请求的分支
  3. 进行更改
  4. git 添加.
  5. git 提交
  6. 推送提交(到您的 fork 存储库)

到目前为止一切顺利,但似乎拉取请求不会在分支(拉取请求所基于的分支)更新后立即自动更新.

So far so good but it seems that the pull request is not updated automatically as soon as the branch (on which the pull request is based) is updated.

问题:有没有办法让拉取请求在分支(拉取请求所基于的)更新后立即更新(自动/手动)?

Question: is there a way to let pull requests be updated (autoatically/manually) as soon as the branch (on which the pull requests is based) is updated?

推荐答案

在我看来你问得有点早了.

Seems to me you asked a bit early.

http://blog.bitbucket.org/2014/04/22/bitbucket-now-auto-updates-pull-requests/

更新我的本地分支并推送后,Bitbucket 自动更新了拉取请求.

After updating my local branch and push, Bitbucket updated the pull-request automatically.

这篇关于如何更新 bitbucket 上的拉取请求?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-18 01:34