Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
54 views

What to do with experimental non-merged git branches?

What are the current best practices with git branches that have been created to test out a solution to a bug and have not been merged because the review process show that they are wrong or there are ...
5
votes
3answers
169 views

Is using “feature branches” compatible with refactoring?

“feature branches” is when each feature is developed in its own branch and only merged into the main line when it has been tested and is ready to ship. This allows the product owner to choose the ...
5
votes
5answers
570 views

Subversion: Merging subtrees vs. merge-tracking

Brought forward from http://stackoverflow.com/questions/1525027/subversion-feature-branch-requires-changes-from-another-feature-branch I have two feature branches: "FeatureA" and "FeatureB". ...
3
votes
1answer
58 views

“Move” files to their own branch in Git

In master I have some files that should better live in a feature branch. I'd like to create such a branch and have the files there, at the same time removing them from master. I'm not concerned about ...
3
votes
3answers
73 views

Bug fixes in a feature branch

We're using a A successful Git branching model by Vincent Driessen for our branching model. All's fine but I haven't really seen a particular issue brought up. From what I've understood, when a new ...
2
votes
2answers
34 views

How does one work on a new git branch that depends on another git branch that is not yet merged?

Here's my scenario: My project is following the topic branching pattern. I create a branch to fix some problems, let's call this branch problem_fixes. I make my changes, and submit a pull request. I ...
2
votes
1answer
43 views

Feature branching and loss of code metadata

We use feature branching extensively as a strategy for development. In short and somewhat simplistic terms, what that allows us to do is to keep a stable trunk at all times while developers ...
2
votes
1answer
156 views

Merging feature branches to release branch instead of trunk

I have a question about two source control scenarios, both with feature branches and release branches: In scenario 1 feature branches are merged to the trunk. In scenario 2 feature branches are ...
1
vote
2answers
64 views

How to share a git feature (or topic) branch with multiple developers

I'm following the the workflow described here, as I found many references pointing to this page as a good workflow. As mentioned in the article, "feature" branches are shared between developers, but ...
1
vote
1answer
42 views

Publishing a feature branch to preview periodically in git

I'm trying to understand the best way to occasionally publish a feature branch into a preview branch for git. Here is my setup: Client asks for feature. I develop initial feature and publish to ...
0
votes
1answer
37 views

Is there any way to clean up remote repositories while keeping these repositories' commit logs?

I know how to delete remote branches, so this question isn't: cleaning up old remote git branches or how to manage obsolete branches on github Rather, my problem is that deleting old feature branches ...
0
votes
2answers
59 views

How to manage this merge in Hg?

I took a clone of an Hg repos a while ago, and have been making significant local commits (major version change). In the mean time, the trunk has advanced slightly; several commits, but trivial ...
0
votes
3answers
230 views

Subversion feature branch requires changes from another feature branch

I have two feature branches: featureA and featureB. FeatureA is complete, but not merged into trunk because it's untested and we're not ready to test it yet. I'm working on featureB, and have ...