5344
5432
1万
管理员
本站资源如失效,请点击反馈!
"Pull Request 是一种通知机制。你修改了他人的代码,将你的修改通知原来的作者,希望他合并你的修改,这就是 Pull Request。"
$ curl -L http://github.com/cbeust/testng/pull/17.patch | git am
$ curl https://github.com/sclasen/jcommander/commit/bd770141029f49bcfa2e0d6e6e6282b531e69179.patch | git am
# 创建远程仓库,指向 PR 提交者的仓库$ git remote add nullin git://github.com/nullin/testng.git# 从该远程仓库拉取代码$ git fetch nullin# 将该仓库的某个分支合并到当前分支$ git merge kneath/error-page# 推送到自己的仓库$ git push origin master
# 建立远程分支,追踪提交者的仓库$ git remote add nullin git://github.com/nullin/testng.git# 从该远程仓库拉取代码$ git fetch nullin# 只将感兴趣的 commit 加入当前代码$ git cherry-pick commit1$ git cherry-pick commit2# 推送到自己的仓库$ git push origin master
使用道具 举报
本版积分规则 发表回复 回帖后跳转到最后一页
手机版|飞雪团队
GMT+8, 2024-11-24 05:31 , Processed in 0.121924 second(s), 24 queries , Gzip On.
Powered by Discuz! X3.4
Copyright © 2001-2021, Tencent Cloud.