The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
77 views

Gitolite config won't deny permissions

I'm having a config file like this: @all = @group1 @group2 @group3 @group1 = user1 user2 user3 @group2 = user4 user5 user6 @group3 = user7 user8 user9 repo production_repo RW+ = ...
0
votes
1answer
49 views

Best way to manage local feature branches with git?

I am looking at some of the finer points of branch management with git and was basing a few of my decisions around this article: http://nvie.com/posts/a-successful-git-branching-model/ Now we have a ...
1
vote
1answer
50 views

Rebase feature branch onto another feature branch

I have two (private) feature branches that I'm working on. a -- b -- c <-- Master \ \ \ d -- e <-- Branch1 \ f -- g ...
3
votes
1answer
72 views

Feature branch statistics for a git workflow

My current development environment uses git for VCS, and we use a feature branching workflow. I would like to get to a point where statistics can be generated about each feature. Mainly, I would like ...
1
vote
1answer
105 views

Managing dependent in-progress git feature branches / branch sets

In recent times I seem to have this repeating scenario of having multiple feature branches under development, with one feature branch (feature-b in the below picture) depending on support of another ...
0
votes
1answer
44 views

git rebase of feature branches which have been shared

We would like to use rebasing as our standard way of 'merging' our code. We also use fairly short-lived feature branches ( less than 2 weeks) which we push to a central repository via an automated ...
8
votes
1answer
367 views

How would I configure TeamCity to support a GitHub pull-request model for source-code integrations?

We use TeamCity and GitHub Enterprise. We use an open-source-esque workflow with git: there's a mainline repository for each component, and when people want to make changes, they fork mainline to ...
0
votes
1answer
82 views

Git Feature Branches in CruiseControl.Net

It looks like the git source control provider for CruiseControl.Net will only monitor a single git branch. Is there a way to make it monitor all git branches? I know you can do this in Jenkins by ...
7
votes
2answers
169 views

Feature backporting in Git / Subversion

What would be the preferred way to achieve the following workflow with either Git or Subversion (I have more interest in the Git version, but comparison will definitely be useful): Let's say we had ...
3
votes
2answers
490 views

How to continuously build and deploy feature branches with Maven?

My team is using feature branches to implement new features and continuously deploys snapshot builds into a remote repo for our users to use. Thus 'deploy' really only means 'distributing to a remote ...
4
votes
1answer
115 views

GIT Rebase a Branch that is collaborated on?

After reading this article, it makes sense to rebase to gather changes from the main branch on to my feature branch: git workflow and rebase vs merge questions clone the remote repo git checkout -b ...
2
votes
1answer
80 views

Subversion reintegrate branch conflicts

I'm using svn for version control and have the following question: Let's say I develop something in my feature branch and constantly upstream changes from the trunk (by simply merging them and ...
7
votes
1answer
2k views

Merging Git Flow Feature Branch after Hotfixes?

I just recently started using git flow and there's something I don't quite understand. First, I never do anything directly on develop. If I do something I either use a start a hotfix or feature. My ...
7
votes
5answers
584 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 ...
3
votes
2answers
135 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 ...
1
vote
2answers
857 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 ...
0
votes
1answer
69 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 ...
3
votes
1answer
124 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 ...
2
votes
1answer
93 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
2answers
86 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 ...
4
votes
4answers
511 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
1answer
60 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 ...
10
votes
3answers
343 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 ...
2
votes
1answer
248 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 ...
5
votes
5answers
1k 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". ...
0
votes
3answers
312 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 ...