我对使用REST API的订阅功能有一些疑问.我们使用"Express Checkout NVP/SOAP Integration"实施了定期付款,但对我们来说这不是最佳,因为:
这就是我想用REST API重写它的原因.我认为流程将如下:
我的问题是:
在我们的项目中,我们使用 git,我们在新分支中发布的每个功能以及在 codereview CTO 之后将其重新绑定到开发分支中。在我完成我的票后,CTO 说他不能重新调整我的更改,因为发生了冲突。我在本地机器上复制了它:
git clone ...
cd project1
git checkout my-branch
git rebase develop
...
Auto-merging admin/contest.html
CONFLICT (content): Merge conflict in admin/contest.html
Failed to merge in the changes.
Patch failed at 0019 contest: admin, dashboard, /contest
When you have resolved this problem run "git rebase --continue".
If you would prefer to skip this patch, instead run "git rebase --skip".
To check out the original branch and stop rebasing run "git rebase --abort".
Run Code Online (Sandbox Code Playgroud)
好的,我解决了这个冲突,而不是添加了这个文件,但我不能继续 rebase 或 push …