我正在开发一个基于 CakePHP 的项目,该项目托管在 GitHub 上 。 我的项目 托管在 Bitbucket 上。他们都使用 git 。基本上我想在我的 Bitbucket 存储库中创建一个 CakePHP 的“榝ork”(我不知道我是否使用了正确的术语,因为我是 git 的新手),以便能够获得更新无需下载所有 CakePHP zip/tar 并替换文件夹,然后提交和推送,但可能带有“榤erge”(?)。
今天不可能在不同的站点之间发送“拉取请求”。我在 Bitbucket 问题跟踪器中添加了一个功能请求:#3288。如果您想跟踪此内容,我建议您将自己添加为关注者。
但是,您仍然可以将源代码从 GitHub 移动到 Bitbucket,而无需下载任何 zip 文件或 tarball。您从 GitHub 克隆并推送到 Bitbucket:
$ git clone https://github.com/cakephp/cakephp $ cd cakephp $ git push git@bitbucket.org:mg/cakephp.git master
我mg/cakephp首先在 Bitbucket 中创建了一个空的 Git 存储库。这样您就可以将变更集从 GitHub 推送/拉取到 Bitbucket。
mg/cakephp