参考来源:
https://blog.csdn.net/qq_35432904/article/details/107232691
关联远端仓库
$ git remote add target git://gitUrl
然后,将远程代码抓取到本地
$ git fetch target
获取远端仓库的master分支的提交日志
$ git log target/master
最后,使用git cherry-pick命令转移提交。
$ git cherry-pick <commitHash>