Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working with a git repository that needs a commit from another git repository that knows nothing of the first.

Typically I would cherry-pick using the HEAD@{x} in the reflog but because this .git knows nothing of this reflog entry (different physical directory) how can I cherry-pick this or can I?

Thank you in advance

share|improve this question

7 Answers

up vote 61 down vote accepted

You'll need to add the other repository as a remote, then fetch its changes. From there you see the commit and you can cherry-pick it.

share|improve this answer
+1 just because you were faster. – karlphillip Feb 25 '11 at 16:51
What if I'm using git-svn? my first branch is using git-svn of the trunk and the next is using the git-svn on a branch (thanks for the quick reply) – gitcoder182 Feb 25 '11 at 16:54
@gitcoder182: not sure since I never used git-svn, but it should work. – CharlesB Feb 25 '11 at 16:56
1  
when you first clone the Subversion repository make sure you clone the entire repository, not just the trunk. Also make sure you use the --stdlayout option of git-svn if you're using the standard trunk/branches/tags layout in Subversion. Then the Subversion branch will be a mere remote git branch. – wilhelmtell Feb 25 '11 at 17:05
1  
If you're using Github, you can pull the patch by appending .patch to the commit URL, and then applying it with git am < d821j8djd2dj812.patch. Outside of GH, similar concepts could be done as referenced in the alternative answer below. – radicand May 12 '12 at 19:29
show 1 more comment

The answer, as given, is to use format-patch but since the question was how to cherry-pick from another folder, here is a one liner to do just that:

git --git-dir=../some_other_repo/.git format-patch -k -1 --stdout <commit SHA>| git am -3 -k
share|improve this answer
That's awesome!!! Exactly what I was trying to do. – infinity Jul 25 '12 at 15:09
4  
This a better response than the accepted one ! – Brice Oct 18 '12 at 13:13

Here's an example of the remote-fetch-merge.

cd /home/you/projectA
git remote add projectB /home/you/projectB
git fetch projectB

Then you have a choice:

git merge projectB/master

or:

git cherry-pick <first_commit>..<last_commit>
share|improve this answer
thanks for the example! – thekindofme Dec 20 '12 at 3:44

See How to create and apply a patch with Git. (From the wording of your question, I assumed that this other repository is for an entirely different codebase. If it's a repository for the same code base, you should add it as a remote as suggested by @CharlesB. Even if it is for another code base, I guess you could still add it as a remote, but you might not want to get the entire branch into your repository...)

share|improve this answer

I had the same question maybe more from a conceptual standpoint so I thought I'd add my own answer and a question that will hopefully add some pedagogical value to the thread. I'm not trying to be pedantic, just trying to better understand git. The other answers clearly show how to perform the required task.

No, it is not possible to cherry-pick directly from another git repository. One can only cherry-pick from one local branch onto another. If you need to pull changes from another repo, then first pull in (or fetch) that remote branch to your local repo, then interact with the local copy of that branch.

Is this statement correct? I suppose git is designed to only allow fetch/pull interactions between repositories as a safety mechanism?

share|improve this answer

Yes. Fetch the repository and then cherry-pick from the remote branch.

share|improve this answer

You can do it, but it requires two steps. Here's how:

git fetch <remote-git-url> <sha-or-branch> && git cherry-pick FETCH_HEAD

Replace <remote-git-url> with the url or path to the repository you want cherry-pick from.

Replace <sha-or-branch> with the git SHA or a branch name (or any refspec) you want to cherry-pick from the remote repository.

Ciao!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.