Tagged Questions

69
votes
2answers
27k 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 ...
8
votes
2answers
544 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 ...
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 ...
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
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
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
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
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
2answers
398 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
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 ...
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
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 ...
0
votes
1answer
449 views

In TFS, how can I cherry-pick a changeset to an unrelated branch?

I have a very messy TFS structure that I am trying to clean up (thanks to my predecessor). I now have a situation where I need to bring changesets selectively from one branch to another where they ...