1
vote
2answers
32 views
Working with multiple branches in ASP .NET
I've seen several other posts similar to this (namely http://stackoverflow.com/questions/5237/solutions-for-working-with-multiple-branches-in-asp-net) but there are several issues …
1
vote
2answers
45 views
How can I find out which files have been modified in a branch?
I have two branches: master and bug1. I checked out bug1, did bunch of changes and multiple commits. How do I get a list of all files that were changed on the branch? I'm not inter …
1
vote
1answer
31 views
How are git branches imported into mercurial with hg convert?
I have a number of branches in a git repository:
david@Panama ~/app: git branch -r
origin/HEAD -> origin/master
origin/master
origin/newButtons
origin/newFonts
origin/serverV …
3
votes
3answers
114 views
How to merge a branch to another branch in GIT?
Let me explain the problem in detail.
I have a main git branch on which I created a new side branch bug10101010, now I wan't to merge the bug10101010 to main. So far everything is …
0
votes
2answers
42 views
Any tools to analyze divergent code, get it into sourcecontrol (Subversion)
Say you take over some code that exists in different versions, no sourcecontrol (possibly some backups). Are there some tools that let you analyze relationships (more than diffs), …
9
votes
7answers
201 views
SVN and code shared between several projects
I have multiple projects in SVN. Each of these project sits in it's own trunk and branched for releases.
And there is a shared code which is used in each project. The question is …
3
votes
7answers
124 views
Technique for determining if an integer sequence can be generated without branches?
If you're optimizing for an architecture on which branching is expensive (say the PS3's cell processor), it can be important to be able to determine whether or not you can express …
2
votes
1answer
49 views
SVN: Moving repository trunk to another’s branch (with history)
I'm working with an SVN setup with a lot of repositories. I'm trying to consolidate some by moving the trunk of one into the branch of another (the old ones are themed versions of …
3
votes
6answers
181 views
Branching and Merging Strategies
I have been tasked with coming up with a strategy for branching, merging and releasing over the next 6 months.
The complication comes from the fact the we will be running multiple …
13
votes
18answers
729 views
Do you feel comfortable merging code?
This morning, I read two opinions on refactoring.
Opinion 1
Opinion 2
They recommend branching (and subsequently merging) code to:
Keep the trunk clean.
Allow a developer to …
0
votes
0answers
19 views
How can I synchronize tags (or branches) with an svn repository using git-svn?
I've done some searching, and I cannot seem to find a clear answer as to how one would go about synchronizing a local git branches with a remote subversion ones.
Specifically, I w …
22
votes
14answers
943 views
Subversion - should anyone be developing off the trunk?
When using Subversion, should developers be working off the trunk or should the trunk be only used for merges from each individual developer's branch and watched by a continuous in …
0
votes
1answer
33 views
git merge results in duplicate commits on published branch
I maintain a public branch called "for-maintainer" into which I push changes for up-stream. I'm having issues pulling changes that make it upstream back into my local private repos …
1
vote
1answer
31 views
Maintaining a patch set for different branches
I'm in the position of generating a series of documentation patches each of which applies to more than one branch. The project uses Git for version control.
The patches should app …
1
vote
6answers
172 views
how do I manage source code using SVN? branching, merging.
We are team of 4 developers/friends located in different locations. We all have started working on the a ProjectX and created branches A, B, C and D using Subversion.
we have just …
