Tagged Questions
The cherry-pick tag has no wiki summary.
69
votes
2answers
26k views
Git Cherry-pick vs Merge Workflow
Assuming I am the maintainer of a repo, and I want to pull in changes from a contributor, there are a few possible workflows:
I cherry-pick each commit from the remote (in order). In this case git ...
55
votes
3answers
4k views
What git branching models actually work?
In our company we have successfully deployed git and we are currently using a simple trunk/release/hotfixes branching model. However, this has it's problems, I have some key issues of confusion in the ...
27
votes
2answers
3k views
In Mercurial, how do I merge a single revision?
In Mercurial/tortoiseHG, given the following example, what is the easiest way to merge revision "G" into repo A without taking D,E and F (Assume that G has no dependency on D,E or F).
Repo A: A - B ...
24
votes
5answers
5k views
How to cherry-pick multiple commits
I have two branches. Commit a is the head of one, while the other has b, c, d, e and f on top of a. I want to move c, d, e and f to first branch without commit b. Using cherry pick it is easy: ...
8
votes
2answers
541 views
Git cherry pick and datamodel integrity
Given that two branches have diverged and a specific commit from one branch (and not everything) needs to be introduced to the other, git cherry pick achieves exactly that.
After some time there is ...
7
votes
4answers
2k views
Is it possible to cherry-pick a commit from another git repository?
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 ...
6
votes
1answer
709 views
Merge tracking for GIT cherry picking?
For example, I have a branch DEV and a branch STABLE.
In case I have cherry-picked several commit from DEV to STABLE.
Is there any way to let GIT aware of the cherry-picked commits, and avoid ...
5
votes
2answers
140 views
Is it possible to apply a commit to all branches in git?
I have a feeling I am asking something that can't be done in git, but I might as well ask. Is there any way that I can make one change and commit it to all branches? For instance, suppose I want to ...
4
votes
7answers
98 views
How to find out what commit a checked out file came from
When I check out a file with git checkout $commit $filename and I forget $commit but still remember $filename, how do I find out what $commit was?
4
votes
1answer
76 views
Move several commits from one branch to another?
I started with branches master and develop. I made branch foo based off of develop. 7 commits later and now I realize I wish i made it off of master. I can cherry pick each commit, no big deal, but is ...
4
votes
2answers
330 views
How to git-cherry-pick only changes to certain files?
Say commit stuff changes multiple files but I only want to apply the changes to files A and B, how can this be achieved?
4
votes
1answer
139 views
git cherry-pick -x: link in details instead of in summary
Given a commit with the message "foo", i.e. with only a summary part, I do git cherry-pick -x the_commit. The result is a new commit with message foo(cherry picked from commit ...
4
votes
1answer
2k views
git says everything-up-to-date when pushing changes to a remote branch
i have commits that are in a remote repository (origin/master) which i want to put in a branch created from that repository (origin/remote_branch).
when i checkout to that remote branch
git checkout ...
3
votes
3answers
69 views
bookkeeping cleanup of equivalent changes across branches in git
I'm attempting to cleanup a large number of topic branches, primarily so that the branch overview for master in github no longer displays spurious "n ahead" indicators in inactive topic branches due ...
3
votes
1answer
471 views
Applying same changes to diverged GIT branches
I've got a project which has a master branch and a stable branch - the branches diverged long time ago. Now I've got a couple commits on the stable branch, which I also want to have on the master ...
3
votes
2answers
537 views
Cherry-picking from git to svn (or, How to keep a project history in git and releases in svn)
I'm in a position where I'm the only one using git, everybody else is using svn. I've used 'git svn' to connect to the team svn and mostly it works just fine. Lately, I've started a project initially ...
3
votes
1answer
103 views
How to get list of commits that touched a given line of code (git)
I want to cherry pick from one branch to another, but they diverged strongly.
How can I get list of commits that modified a given part of the file?
2
votes
1answer
76 views
Mark changes as already merged or deliberately ignored with hg pull/push/merge/graft?
I'm transitioning to Mercurial from Subversion, where I'm used to using svnmerge.py to track changes that have already been merged, or which have been blocked from being merged:
# Mark change 123 as ...
2
votes
1answer
80 views
Why cherry-pick pick change more than one commit?
I have 2 branches here, say branch1 and branch2. There are lots of new feature added in branch1, and the branch2 is stable. Today, I want to merge just 1 feature from branch1 to branch2. So, I just ...
2
votes
1answer
479 views
git cherry-pick not working
I'm trying to cherry-pick a commit from master and get it into the current production branch. However, when I execute git cherry-pick <SHA-hash>, I just get this message:
# On branch ...
2
votes
4answers
59 views
Extracting git history for part of a git repo to create a git submodule — cherry-pick?
A similar question, How to cherry-pick multiple commits, assumes that the commits are consecutive.
I have a module that I downloaded as a tarball. I've included it in my main project's git repo and ...
2
votes
1answer
85 views
Merging changes from a branch based off a topic branch to a different topic branch in git
My team is working on a shared topic branch in git which I will call "topic1." I was working on a refactor of some code on a branch made off of topic1, which I will call "refactor." I have been ...
2
votes
1answer
281 views
What are the differences between git cherry-pick and git show | patch -p1?
I ran into a situation where git cherry-pick X would have some conflicts, but also created extra inserts (when verified with git diff).
I then re-ran git show X > my.patch, and then did patch -p1 ...
2
votes
1answer
102 views
When someone has cherry-picked from my git commits and made commits of their own, how do I merge?
Suppose I fork someone's git repo and make commits A, B, C, and D. The persom who I forked from then cherry-picks A and C, which therefore become A' and C'. He also makes commits X, Y, and Z of his ...
2
votes
3answers
475 views
cherry-picking with git-svn
I'm facing the problem of merging a subset of revisions from one topic-branch to another. Since I am using git-svn, I was curious to see if it is possible to use cherry-picking for this. Using ...
2
votes
3answers
441 views
git cherry-pick says local changes exist, but git status says nothing
$ git cherry-pick 5de83068
error: Your local changes to the following files would be overwritten by merge:
Components/ApplicationEnums/Application.cs
Please, commit your changes or stash them ...
2
votes
2answers
134 views
How to pull a series of commits in git one at a time?
I have a series of commits in a fork that I want to apply or reject one at a time to my fork. Should I use git cherry-pick for this?
1
vote
1answer
15 views
apply cherry pick
I got a simple question for you GIT masters:
in GIT man pages I've got this for
man git-cherry-pick
...
git-cherry-pick - Apply the changes introduced by some existing commits
...
My doubt is: ...
1
vote
1answer
45 views
avoid repeat commits when cherry-pick from master to branch, then merge from branch back to master
I've got two branches in git, master/ and 1.7/. I backport some fixes from master/ into 1.7/, using cherry-pick. (I'm not using merge because I only want some of the changes.):
$ git checkout 1.7
$ ...
1
vote
2answers
43 views
Working with git on two computer (with github)
I'have a python project and I decide today put it on github.
I'm newbie with that. I see several tutorial. All work fine exept a thing I want to do:
I'm coding on my laptop in the day and on my ...
1
vote
3answers
204 views
git workflow and gerrit
I am trying to implement a 'git-flow' kind of workflow using Gerrit but I can't seem to figure out the last piece of the puzzle.
There are two preconditions to my problem:
Gerrit will only perform ...
1
vote
1answer
76 views
Can cherry-picking from a branch cause trouble rebasing this branch to master
Context: I have an experimental branch crazy-idea where I did some wild things in a dedicated sub-dir madness/{src,docs}. A ton of commits, with notes, pictures, hacky scripts to create plots. Now ...
1
vote
1answer
63 views
Copy 1 commit from one branch (dev) to another (stable) with clean working dir
Title says it all, I think... I tried to understand How to undo a commit and commit the changes into the other branch in Git? but I don't think it has to be that hard. (Answer is using branch -f and ...
1
vote
2answers
397 views
TFS Branching & Merging Strategies
I have a Team Project in TFS where tasks are submitted daily. I would like to work on each task independently and then merge it into the main line after testing.
Currently there is a MAIN branch and ...
1
vote
1answer
188 views
How to git cherry-pick from sibling directories?
I would like to use git cherry-pick to apply a commit from one file to another without rename detection (to many similar files lead to wrong detections).
(master) directory1/file
(master) ...
1
vote
2answers
109 views
How can two branches be combined into a single branch based on the date of each commit?
Let's say I have a git repository that looks like this:
merge-base---A1--A2------A3------A4 (branchA)
\
----------B1------B2 (branchB)
To make things simpler, let's say the ...
1
vote
1answer
112 views
Cherry pick an australian address from a page of text
I am trying to parse a prose paragraph for anything that might resemble an address. I have a database of addresses I am matching against and these are the only addresses I am interested in. I'm using ...
1
vote
2answers
950 views
Git: move changes between branches without working directory change
Use-case: every time I want to move commit from one git branch to another I perform the following sequence of actions:
[commit into working branch]
git checkout [branch-to-merge-into]
git ...
1
vote
1answer
239 views
How do I share single files between multiple branches in git
I have a repository that contains the software in branch master and its homepage in branch gh-pages. The project contains an examples directory with source files that should be contained in the master ...
1
vote
1answer
274 views
Cherrypicking versus Rebasing
The following is a scenario I commonly face:
You have a set of commits on master or design, that I want to put on top of production branch.
I tend to create a new branch with the base as production ...
0
votes
1answer
28 views
How to cherry-pick interactively
I have hacked on a branch for a while, and this branch won't be merge before long. But there are some commits I'd like to merge in the master anyway.
Is there a way to get an interactive cherry-pick, ...
0
votes
1answer
35 views
How could cherry-pick other merge path?
I have this structure:
B - C - D <- feature
/ \
A-----------E <- master
^ mytag
B, C and D commits are feature branch path. A is a common base. This feature is merged back ...
0
votes
1answer
21 views
HG workflow : how to pick/abandon single changesets from branch clones
I think it is common practice of many development teams to create new features or bugfixes in a separate feature clone repository and pull and merge back if the feature/bugfix is ready.
However, ...
0
votes
2answers
38 views
How to achieve a private branch in git that “floats” when merging with upstream?
I have a fork of another organization's repository. I'm at the the latest tag in the repo, which is not the head, and I've created a branch from that tag which will never be pushed upstream. That's ...
0
votes
0answers
28 views
Joomla module resets after filter item is checked
I've been working on trying to get this module to work the way I want and the developer is a little slow on the response...naturally it is time sensitive now. I've got a module for Joomla 1.5.23 that ...
0
votes
1answer
54 views
Git merge and preserve original committer
how can i preserve original commiter, when i merging changes made by another developer?
(Something like git merge --preserve-comitter)
cherry-pick is almost good, but it seems does not preserve ...
0
votes
0answers
96 views
Discard some files in unresolved conflict state after git cherry-pick -n
I would like to cherry pick a commit to my branch foo. That commit contains changes of lots of files. I only need the changes of a few files. I'm using git cherry -n
Normally with git add I could ...
0
votes
0answers
48 views
Mercurial GUI client for OS X with cherry-picking?
This is the one feature that I'm missing from GitX. Is there any such client out there?
What I mean by cherry-picking is the ability to include only certain rows in a commit. Like crecord, but with a ...
0
votes
1answer
140 views
Cherry-picking changesets after bulk merge into main
Let's suppose that I have three branches:
Main
+--Dev
+--Release
And several changesets in Dev: changeset 1, 2 and 3 and all three changesets affect some File. At some point I merge them all into ...
0
votes
1answer
91 views
git-cherry seems like not working for disordered merges
I tried to use git cherry-pick for merging some commits from master and then git-cherry to determine what commits currently merged. It works fine while I merge it in the order it's on master, but when ...