4
votes
2answers
40 views
In git, how do I remove a commit from one branch and apply it to a different branch?
I have two branches off of master, each one for a different feature, and then I have a synthesis branch that combines the two. I committed something to the synthesis branch, but n …
2
votes
2answers
46 views
git-svn and a large project
I've scoured the web and found a lot about working with git-svn and branches, but nothing that fits my situation.
I'm working on a large project, and I work on several of many bra …
0
votes
3answers
39 views
How to create branch for the single file?
Hi community,
I have a product which comes in two versions, and up to now I was able to manage the differences between them only using compiler flags and #ifdefs. Now I want to ha …
0
votes
2answers
21 views
git checkout remote branch shows extraneous files?
master branch has these files and folders (simplified):
C:\Local\TickZoom\Project>ls
file.txt name.txt public
public branch is tracking a vendor repository and h …
1
vote
2answers
43 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
34 views
git: merge a portion of one branch’s source tree into another, regardless of individual commits
I understand how to merge branches together in git, and I love how easy it makes it.
I have a branch that looks like this:
project/
|--subproj1/
| |---(files)
|
|--subproj2/
…
2
votes
4answers
115 views
Problem in SVN merging branches into trunk
I have a trunk (A) and two branches (B and C). When I merge A with C its OK, after I merge A with B, the previous C its overwriten and my trunk don't have the C changes.
What I wa …
4
votes
2answers
61 views
Using Git, show all commits that are in one branch, but not the other(s)
I have an old branch, which I would like to delete. However, before doing so, I want to check that all commits made to this branch were at some point merged into some other branch. …
0
votes
4answers
79 views
Git pull certain branch from github.
I have a project with multiple branches. I've been pushing them to github, and now that someone else is working on them i need to do a pull from github. It works fine in master. Bu …
0
votes
3answers
112 views
Branching without branches
This might seem like a weird question, but bear with me.
I'd like to (ab?)use git for a little project I'm working on, where I'd like to branch a file, yet keep the branched file …
1
vote
2answers
71 views
Git merge from a specific folder only.
OK, here's my problem, let me try to make it all make sense...
I've created a rails website for client X. I now have a client, Y, who wants a website that does the exact same thin …
3
votes
2answers
79 views
Git merge and resolve any conflicts to current branch.
So I have my master branch, along with branch 'bob'.
I've made many changes in both and now I want merge master into bob to keep him updated. The only thing is, if there is a conf …
5
votes
2answers
158 views
Pros and cons of different branching models in DVCS
The Big Three of distributed version control (Git, Bazaar, and Mercurial) each treat branching fairly differently. In Bazaar, for example, branches are separate repos (actually, di …
1
vote
3answers
61 views
What is a branch specification in Perforce ?
Hi,
it seems to me that keeping the "branch" object in Perforce may not be entirely necessary after an integration has been submitted.
I.e. the "real" branch, is actually a folde …
6
votes
3answers
251 views
How to ‘fix’ a SVN branch/tree conflict?
I took over a software project and decided to put everything under SVN (on Assembla) using Tortoise SVN. The trunk is under ROOT. So the trunk contained the whole application (whic …
