text 来自另一个存储库的Git cherry-pick

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 来自另一个存储库的Git cherry-pick相关的知识,希望对你有一定的参考价值。

# Cloning our fork
$ git clone git clone git@github.com:ifad/rest-client.git

# Adding (as "endel") the repo from we want to cherry-pick
$ git remote add endel git://github.com/endel/rest-client.git

# Fetch their branches
$ git fetch endel

# List their commits
$ git log endel/master

# Cherry-pick the commit we need
$ git cherry-pick 97fedac

# Pushing to our master
$ git push origin master

以上是关于text 来自另一个存储库的Git cherry-pick的主要内容,如果未能解决你的问题,请参考以下文章

Git命令cherry-pick,选择把一部分代码提交到另一个分支

text 更改GIT存储库的“origin”

sh 将子目录从一个git存储库移动到另一个git存储库的子目录,而不会丢失提交历史记录。

git cherry-pick 的使用

text 本地git存储库的post-commit

git cherry-pick简介