In version control, branches represent parallel lines of development. Merging is the action that integrates changes made in different branches.

learn more… | top users | synonyms

0
votes
3answers
24 views

Moving origin/master to HEAD instead of merging

I have a git repository for which git log --graph --all gives me this a the top of the tree: * 726523b - (HEAD, master) Clean-up in .gitignore (2013-05-23 15:46:51 +0200) <Tomas Lycken> * ...
3
votes
3answers
43 views

Git branching and switching back to master is ahead?

I have code that is working pretty good and created a branch to make some significant changes on my work computer with git checkout -b messaging. I committed my partially completed work and pushed it ...
0
votes
1answer
40 views

Why does git generate conflicts during a merge that are auto-resolved by most merge tools such as kdiff3?

As stated in the title. I tried googling this but found no explanation for it so I looked at the kdiff3 documentation which provided some insight. The situation i'm running into is I do a merge from ...
0
votes
3answers
22 views

git - make a 'fresh' feature branch while preserving current feature branch?

With respect to git. I've got a feature branch we'll call foo. In there are a number of committed changes and some uncommitted changes to implement a feature. I've made a bad assumption and a lot of ...
1
vote
2answers
46 views

Git merging/rebasing strategy for single user development

I'm using git for a c++ project, and I'm the sole developer. In addition to maintaining code history, I'm using git because I want to be able to test a new feature without modifying the original code ...
0
votes
0answers
14 views

Feature/Component level branch and release model with GIT

I'm in the process of setting up a new GIT repo for my team. This repo is supposed to contain multiple components which are/will be mostly independent of each-other (individual folders) and can/will ...
0
votes
1answer
22 views

Messed up Git branching, how to fix

I am having some trouble with git (github), because I am new to this, my mind is thinking in SVN, and I guess I am just not getting this... please help. So I was working on some branch_1 doing some ...
2
votes
1answer
23 views

create a branch from a previous svn-revision using SmartGit?

I use SmartGit/HG with an old svn-repository. So it is not a git-repository. now I would like to create a new branch from a former revision in SmartGit. Is this possible? In the end I would like to ...
0
votes
1answer
26 views

Mercurial branching - share changes between bookmark-branches

Basically I have repository with such structure: A(branch:stable) -> B(branch:dev) -> C(branch:dev, bookmark:feature) (and similar siblings) In one of C sibling (to say - E) I made some changes that ...
3
votes
1answer
45 views

Mercurial merge repository as branch

I have two Mercurial repositories that are for different major revisions of the same project. The latter version is a massive change to the functionality, and especially the UI, of the project, but it ...
1
vote
1answer
40 views

Git cherry pick equivalent in Perforce?

My team uses perforce for version control. There have been a lot of additions in the branch that I am currently working on, as compared to the Release branch. Now, I just fixed a known bug in the ...
1
vote
1answer
29 views

What is the correct approach for commiting changes to trunk from branch?

I had to add a new feature to a web project. So I created its branch and added the new feature in the branch and now my code is ready to go on production. But how do I merge it with trunk? What is the ...
1
vote
2answers
88 views

Unshelve to another branch

I'm trying to unpack my changes to the another branch using TFS Power Tools. I'm trying to execute command tfpt unshelve /migrate "NuGet Build" "/source:$/ProjectName/Main/Source" ...
0
votes
1answer
30 views

Merging and Version control [closed]

I want to merge the codes on GitHub. I have a branch called master where I have three Sub-branch named CoreApp, Init and MH. Developers are working on Init and MH . They started working with cloning ...
1
vote
1answer
22 views

Is it possible to reintegrate a SVN feature branch into a different release branch?

Let's say I have created a SVN feature branch "Feature123" from a release branch "Version1.0", to work on a new feature. I've made some changes in my feature branch and committed them to the ...
1
vote
3answers
43 views

How can I overwrite, not merge, one remote branch into another branch?

I have two branches. Staging and Beta. Staging has code in it ( including files ), that I do not want at all. How can I make Beta completely overwrite Staging, so that none of those files or code are ...
0
votes
0answers
49 views

How-to properly merge local git repo with remote one (on github)?

I'm having problem with updating local git repository with changes from remote github repository. The local repository has changed since the last time it was updated from the remote one. When I tried ...
1
vote
1answer
58 views

How do I use git flow with a staging environment?

We are using git-flow to handle hotfixes & features, with a develop branch & the master branch (for production). What is the easiest way to add a staging branch to the mix so that we can ...
1
vote
2answers
50 views

How to change author name on git branch

I branched my github project to create the static page the other day but messed up with my author name https://github.com/ronaldsuwandi/le-simplepage/commits/gh-pages How do I rename the author for ...
1
vote
1answer
49 views

Subversion merge failing

I am seeing something I don't understand while merging code from a Subversion branch. We have an 'experimental' branch, where we implemented a fix for some functionality. We begun the branch work ...
1
vote
1answer
77 views

Mercurial merge with subrepo throw error about .hgsubstate

I am trying to merge my local with the changes I pulled and I get this error: % hg merge --verbose --tool=internal:fail 68 resolving manifests '.hgsubstate' [command returned code 255 Wed Apr 10 ...
0
votes
1answer
48 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 ...
0
votes
0answers
62 views

TFS 2012 file deletes not honored in later merges

In TFS 2012, we have a main integrate branch, and multiple feature branches which are children of the integrate branch. Development work occurs on the feature branches and is merged to the integrate ...
1
vote
1answer
63 views

SVN Maintain Dev, QA, and Production Branches

Long time reader; first time poster. I use this site almost everyday, but it has finally come to the point where I need to ask a question :) My team and I devlop a project management system at work ...
0
votes
1answer
43 views

Switching between Branches in SVN and Git

In SVN (or Git), suppose you are in a working copy directory which has been created by checking out branch A. Now, I need to work and commit to branch B. In SVN, I can use the svn switch B and in ...
1
vote
1answer
99 views

git tells me that I Merge conflict, but also tells me that no files need merging

I committed some changes in the branch new. I checkout out to master. When I tried to merge: $ git merge new Auto-merging js/site.js CONFLICT (content): Merge conflict in js/site.js Automatic merge ...
2
votes
1answer
42 views

How can I merge finished work patch instead of its whole history into test branch?

A developer starts work on a feature lets call it "Fix a hardcoded link", once it's done, it's passed to another developer for peer review. Peer reviewer is ok with code changes and merge feature ...
2
votes
1answer
62 views

How to confirm if a branch was merged via SQL?

Does anyone know how to confirm if a branch was merged via SQL query? In the long run, I want to create an on demand SSRS report so this can be reviewed after a series of releases have been deployed. ...
0
votes
1answer
59 views

git log not showing branches when you work alone in the project

I have found that I only see branches and the right project topology when using either gitk, sourcetree or git log if I am collaborating with other developers. But when I work alone and I create ...
0
votes
1answer
31 views

how to put all in one HEAD_FETCH HEAD and ORIG_HEAD in git

I'm a newbie using Git and more concretely egit into eclipse. I am trying to merge all commits into one branch but what I get is that I cannot do that because cherry-pick does not allow two different ...
3
votes
2answers
76 views

Git won't let me merge

Good evening! I know this is very usual and there are probably thousands of answers on the internet but I couldn't find one that was helfull. I have two local branches: MASTER Mk I ...
2
votes
0answers
68 views

determine ancestry references between two commits in git

Let's assume we have two commits A and B in the same repository and that A is an ancestor of B. That has been checked with exist status 0 for: git merge-base --is-ancestor A B or, in older way if ...
12
votes
4answers
448 views

git find all unmerged commits in master grouped by the branches they were created in

I have to create some code review from unmerged branches. Side-note: In finding solutions, let's not go to local-branch context problem as this will run on a server, there will be just the origin ...
0
votes
1answer
61 views

How to partial reintegrate a branch to trunk?

I searched a lot about this topic but did not found a convincing answer. I have a branch B that is used for Feature F1, F2 and F3. Commits for the features a mixed (e.g. a commit for F1, commit for ...
5
votes
1answer
120 views

SVN strategy using branches, and merging changes from trunk into branch

So long time user of SVN, but fairly inexperienced in branching / tagging, and when I have I suspect I'm not really using it correctly or to its full potential. I have my trunk which I work on adding ...
-1
votes
2answers
149 views

How exactly do you reintegrate a branch into a parent branch using TortoiseSVN?

So, I had this problem again and decided to hear from the experts(please only those who know what they are talking of please). I created a branch(DUMMY-BRANCH) from another branch(called UAT_BRANCH ...
1
vote
0answers
73 views

What are the consequences of renaming a branch in TFS 2012?

I've read in many places that renaming a branch is rather problematic in TFS 2010 : you may lose the history of the branch you just renamed ( as seen in this article or in this SO question ) I cannot ...
0
votes
0answers
84 views

Setting up Jenkins and Git with private branches

I am in the process of setting up a Jenkins environment with a Git repository. The problem is I need the setup to be a little more complex than what I am used to. I am thinking that each developer in ...
2
votes
1answer
43 views

Is it possible to merge from branch to branch using SVN?

I was wondering if someone could offer some advice on how to manage our SVN trunk and branches so that my team can deploy to three distinct environments? Currently we have the following setup: 1. ...
0
votes
1answer
90 views

Automatically renaming files during a TFS Merge

My development team is in the process of implementing branching and merging in TFS. Our software is contained in one solution, which many projects embedded within. One of those projects contains all ...
0
votes
0answers
21 views

How can I rollback a changeset from only a parent branch?

Our office maintains two TFS branches: one to be released next (A), and another to be released after that (B). All changes from A are merged into B so that bug fixes are not lost, but new development ...
1
vote
1answer
42 views

Branching multiple projects in subversion

We have a single application with 20+ eclipse projects in a single repo. So far we haven't branched much, but we are going to try using branching features a little more. Each feature typically ...
0
votes
0answers
65 views

Handling multiple developers in one solution on TFS

We have a solution containing many projects and our team work on different areas of our overall software product. Before starting work, they make a development branch and work in there. When the ...
2
votes
1answer
50 views

Fundamentals of SVN merge

My question relates to some fundamentals of SVN merging mechanism. I am not reporting a merge problem here. Moreover I have gone through SVN book's merge chapter (not a newbie). I have 10 revisions ...
3
votes
2answers
126 views

How should I handle a pull request in BitBucket which requires some tweaks?

Someone has sent me a pull request on BitBucket. The change in question is submitted on the default branch. Before I merge it in, I'd like to make a couple of tweaks, but more importantly, I'd like to ...
1
vote
1answer
35 views

Moving git commits on public master to an existing branch

I have a git repo with public master and develop branches. I committed to master when I should have committed to develop. I understand that I can move the commits from master to develop with the ...
1
vote
0answers
88 views

How to merge a feature branch to default with subrepositories with Mercurial

I have numerous projects with subrepositories: /project <- Main repository /project/src <- Source code subrepository (subrepository to /project) /project/src/module ...
3
votes
1answer
69 views

git branching workflow

I'm having trouble figuring out what to do manage the branches in my project. I have been working on a feature branch, "loads", which was branched off of "dev". Since branching, "dev" has moved ...
0
votes
1answer
37 views

svn: renaming feature branch in mid of development

Have next situation: trunk branched at rev X -> branches/br1 ... dev with periodical synch trunk -> br1 br1 renamed to br2 (at this moment br1 was not completely synched with trunk) ... dev with ...
1
vote
3answers
37 views

git branches are showing the same contents

I am new to git and am learning to branch and merge. When I perform the following operation: git checkout -b test a new branch is created, I am switched to that branch. When I: vim testfile ...

1 2 3 4 5 10