Merges together two different branches of history by incorporating commits into the currently checked-out branch.
0
votes
2answers
28 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 ...
2
votes
0answers
33 views
Merging after refactoring - detecting moved file parts
I have two branches with the structure:
---(commit 1) ----- (commit 2, refactoring) ----(CONFLICT)
\ /
\ /
...
0
votes
1answer
14 views
Merge localbranch to remote brach in GitHub
I have all my changes in my local branch named B and I want to merge my local branch to the development branch named B. How can I do this in GitHub?
Also how can I ensure that my local changes are ...
1
vote
0answers
21 views
Keep svn repository in sync with git one
my team mate and I are struggling to get our svn repository in sync with our git one.
We are working on a project and we are requested to share our code on an svn repository (hosted by the ...
0
votes
1answer
41 views
What is the right way to merge branches when `git diff` shows changes but `git merge` does nothing
I get stumped when git diff other_branch shows differences and git merge other_branch does nothing. What's the right way to incorporate that "missing" code into my_branch?
This SO answer diagramed a ...
1
vote
1answer
39 views
Restrict developers access on GitHub repository
I have two branches on m GitHub repository. I wanted to restrict developers access to these branches, basically I want Team A to access on Branch1 and Team B to access Branch2, and I (as admin) can ...
0
votes
2answers
33 views
Git - Merge a part of branch commits
How could I merge several, selected commits from branch B into A. I did this but I am not sure if there is a one line solution for this:
git log -p -1 B~~ | git apply
git log -p -1 B~ | git apply
git ...
0
votes
1answer
35 views
Setting no “fast forward” as the default when merging. Is this wise and what are some of the consequences?
So I generally follow the workflow of master branch is for production code only, while all development is done on the development branch which is where I merge all feature branches. I like git merge ...
0
votes
1answer
19 views
How to set no “fast forward” as default when using git merge
From the git book:
You’ll notice the phrase "Fast forward" in that merge. Because the commit pointed to by the branch you merged in was directly upstream of the commit you’re on, Git moves the ...
0
votes
1answer
17 views
Combine git repos preserving history by tag
I have several separated Git repositories - the "core" and several components. Each of them has a tag like "v1.0.1" indicating that it was included in the build. The tag is the same among all repos. ...
1
vote
1answer
44 views
git merge squash - conflict resolution when all I want is the changes from the branch I squashed from
I have github branch which I push to github when the master branch reaches some acceptable state (have done this once). To this end I did :
MrD@MRSD ...
2
votes
5answers
217 views
Understanding Git Graphs
I am new to Git and need help understanding Git history graphs, i.e. the relationship between commits and merges as they are displayed on the graph in tools like SmartGit or GitGui. In the image ...
1
vote
0answers
18 views
Reproducible android builds with git with fast forward merges
I'm looking reproducibility between android system (AOSP) daily builds against repo's collections of git repositories and the impact of using fast-forward merges.
The problem is that when doing daily ...
0
votes
2answers
58 views
Avoiding identical commits in git
Thanks for all help in advance.
Here is a situation and I am trying to understand if git provides a way around this:
Two users (U1 and U2) each have a local repo that is synced to the tip.
U1 ...
1
vote
2answers
65 views
Is it true that `rebase' leads to a fewer number of conflicts than `merge'?
From time to time I stumble upon a statement that 'git rebase' leads to a fewer number of conflicts than 'git merge', for example here: why does git rebase often have fewer merge conflicts than a ...
0
votes
1answer
29 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 ...
0
votes
0answers
19 views
in git, how to merge only if reachable by _first_ parent?
How would I make sure that every time I'm in master branch and I commit (which would include merge commits) that the said commit must have the current commit as it's first parent?
3
votes
1answer
45 views
Denying commits that are not merge commits
Here's a workflow that I use:
Make changes in branch A.
Checkout branch B.
Merge changes from branch A to branch B.
Sync (push and pull) branch B to a remote branch.
Checkout branch A.
Go back to ...
0
votes
2answers
62 views
Git bi-directional merging
I'm wanting to know the best approach for dealing with this git scenario:
Git repo a: CoreProduct
Git repo b: SpecificCustomerProduct which was forked from a
Up until now, we have been making ...
0
votes
2answers
54 views
Conflict when merging two branches with git
I have a problem with merging 2 branches. I have a xml file with the following content:
<?xml version="1.0" encoding="utf-8"?>
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ...
0
votes
1answer
29 views
Git merge two branches and bring both branches to same level
I have two branches master and dev. we usually work on dev branch and then after few days do
git checkout master
git merge dev
this brings all the changes of dev into master.
but the issue we have ...
1
vote
1answer
61 views
Merging several commits into one in Git
I have a single branch git repository, that has ~4000 commits. I want to group the commits according to dates they were created. For example, given the commits below:
abcd 2013-4-1 12:10
abce ...
1
vote
3answers
94 views
git pull options to prevent merge conflicts
Is there an option(s) when doing git pull that will not allow any possibility of a merge conflict? I've looked at the merge strategies but none seem to meet this description. I'm looking for an option ...
3
votes
2answers
154 views
git: what is the correct merging or rebasing workflow to modify a maintenance branch and apply those patches to another branch?
Objective: I need to make custom patches to a prior release of an upstream project, and I want to be able to apply those patches to the later version.
Problem: Rebasing from the maintenance branch ...
3
votes
2answers
63 views
How can I get rid of unwanted changes in a git branch / pull request?
Common scenario: A contributor sends a pull request containing 1 or 2 useful changes plus a ton of (unwanted by me) whitespace changes made automatically by his IDE.
Of course I can tell him to ...
0
votes
2answers
13 views
Incorporating both changes when resolving git merge confilct
Let's say we have 2 development branches (master and feature) and both branches added some code to the same file. When trying to merge feature into master we run into a single confict:
...
0
votes
1answer
28 views
Conflicts in binary files - git
I am working on Git.I was merging one binary file it gave me conflicts.
Can someone please tell me why binary files conflicts. What are the causes.Is it because of the uncommitted changes on current ...
0
votes
1answer
23 views
Git merge a remote into a local branch
I have made a local branch called develop and have made some changes to it. However I now want to merge another developers changes to remotes/devteam/master into my develop local branch.
How best do ...
0
votes
1answer
41 views
How do I git merge a branch that has already resolved conflicts with master?
I have a branch that is currently at the same commit as master. Another developer has just merged master into their branch and resolved all conflicts, but they have NOT done the opposite yet: merge ...
2
votes
2answers
70 views
How can always ignore a file while merge
I have a configuration file that is different in two branches.
I want that this config file is tracked inside each branch but always ignored when merging branches.
So, after i merge the two branches, ...
1
vote
1answer
76 views
Git branch diverged
I am new to GIT, although I understand it's concept I don't think I understand it's practice as well.
I was given a branch, uitest to work on, because I may have not done the push, commit, pull ...
1
vote
1answer
65 views
Git Subtree Merging reports conflict when merging a simple upstream change
I'm getting started with learning subtree merging in git 1.8.2. I have created a simple example to test a change to a third party repo migrating into a main project.
I'm following the 6.7 Git Tools ...
0
votes
1answer
26 views
Why git shows a merge conflict when the HEAD version has no content at the line
I'm trying to do a git merge master from another branch, then I got this conflict:
<<<<<<< HEAD
=======
t.text "label_en"
t.text "help_text_en"
t.text ...
2
votes
2answers
54 views
Afraid git commit and push will accidentally overwrite changes
I am working on a project with a friend using a remote git tool bitbucket.org. So far that we have been working on the master branch at different times, and then commit and push those changes to the ...
0
votes
2answers
204 views
Resolving git conflicts: git mergetool doesn't work
I need to resolve conflicts in git, but as a novice, not sure what is the most effective way.
This is my situation:
I'm in master and need to commit and push all my changes.
$ git pull:
...
4
votes
1answer
50 views
Git - Different Remote for each Branch
I'm unsure of how to ask this properly but I'll try and do my best - I'm by no means a Git aficionado, I know how to use the basic commands but not advanced terminology/functionality.
I have a ...
1
vote
1answer
35 views
git blame: correct author after merge
A GIT merge introduces a new commit. This causes problems with "git blame": the merged lines appear to be committed by the developer that did the merge.
I can understand this being the case for ...
1
vote
3answers
54 views
Git: should merged branch be always deleted?
I have a question related to git merge workflow.
When we merge one branch to another, AFAIK two things may happen: either a single commit would be created on the destination branch (in non ...
1
vote
2answers
28 views
How to merge branches with different case on windows in GIT?
My colleague created by accident a branch named develop-client (lower case 'c') from our main branch "develop-Client" (upper case 'C'). We all work on windows. Now, how I can merge the develop-client ...
0
votes
1answer
46 views
Stuck on git rebase while merging diverged branches
I have a local branch with 5 commits not in remote branch while remote branch has 6 commits not in my local branch.
I squashed my local commits into a single commit, now i have 1 commit in local ...
1
vote
1answer
92 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
2answers
39 views
Git: preserve branch topology on a merge commit
I would like to ask about Git merging in the following scenario:
branchA -*-*-*-*-*
\
branchB *-*-*-*
It is possible to do a git merge in this case an obtain the ...
0
votes
0answers
27 views
kdiff3 won't remember that I just resolved a conflict
This is what is happening when I try to merge 2 files (in my hg repo which opens kdiff3 directly):
I find 2 lines that read : <Merge Conflict> in red in the bottom panel.
I right-click on each ...
0
votes
0answers
54 views
How to have git subtrees merge properly?
It seemed the subtree merge strategy was exactly what I wanted to collect a set of github repositories in folders within one main github repository. However, this merge strategy does not seem to work ...
1
vote
1answer
25 views
Merging two repositories with the github API
Octokit has a Octokit::Client::Commits#merge method to merge.
Is it possible to use this method (or another one) to merge a branch from another repository?
I tried with:
client.merge('user1/repo', ...
0
votes
1answer
61 views
Git Workflow, Nvie Branching Model Ahead and Behind
Following Nvie's git branching model, why do I end up with 'develop' and 'master' each 1 ahead and 1 behind the other after merging the same 'release' branch into both? If the same 'release' branch is ...
3
votes
1answer
82 views
Git merge gone wrong, strange history
I work on this github repo: https://github.com/Sable/mclab
The history on the develop branch is a bit wonky. This is what happened:
Person A with a screwed up environment pushed some commits that ...
3
votes
2answers
73 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
66 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 ...
1
vote
1answer
16 views
Checkout and merge a file from other branch in git
I maintains two branches master and pathogen for my vim scripts. Both of them have their respective vimrc files. Now I want to merge both of them together and save it as vimrc of branch pathogen.
...




