0
votes
1answer
39 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
2answers
30 views

Finding changes in a Git merge

Using git bisect I found the culprit commit - it is a merge commit (I'm on the master branch) I'm trying to isolate the buggy code but the merge included some commits from the merged branch and I ...
1
vote
0answers
34 views

Why does a 'git pull' not also update the remote branch I pulled from?

I have a forked repository, which is set up as a remote called origin, and it was forked from the original repository which I have push access to, called upstream. I have checked out a patch release ...
-2
votes
1answer
40 views

What's the difference between 'git merge' and 'git rebase'?

I'm trying to understand ... What's the difference between git merge and git rebase?
1
vote
0answers
18 views

Is there a solution for handling non-linear release schedules with Git-flow?

The Git flow model is working well for our company so far, but we're wondering about a solution for handling this hypothetical situation. I searched around a bit, but I think my lack of proper ...
0
votes
1answer
21 views

Git (Extensions) - undoing branch merge /hard reset and doing it properly

Right, this may sound like a bit of an odd question, but I think I've done something stupid. I had two different branches (with a very small number of changes), and I wanted to merge SOME changes ...
0
votes
0answers
22 views

Git Submodule Merge

I have a git repository, and in a branch I've created a submodule. The submodule, called foo, replaces a file called foo. The foo repository contains one file called bar. I committed my changes on ...
1
vote
1answer
21 views

git merge into master only overwrite changed files

Is it possible to merge branch edits into branch master with the following scenario: many changes were made on edits as well as new files added. many changes were also made to master as well as new ...
2
votes
2answers
49 views

Show conflict diff part of a merge

I need to present to the team what changes I've made during conflict resolution of a merge. I know this is kind of hard, but I certainly believe it is possible somehow. I've tried already git show -m ...
2
votes
1answer
24 views

creating branch just for merge

*this is one of those "is this a good idea?" questions that I can't really format into a SO acceptable question but.... I'm still not 100% comfortable with git, specifically merging with remote ...
1
vote
1answer
77 views

Merge Request not working GitLab

I have been trying to merge two branches with GitLab But I am keep getting this message. I checked no branch is protected. You can accept this request automatically. If you still want to do it ...
1
vote
1answer
34 views

git merge omits files within ignored folder?

I have a branch that contains a folder resources/ that is in the .gitignore. However, within this folder are a few files that are managed by git. (We use this for 3rdparty-libraries that we compile ...
0
votes
0answers
14 views

git-svn: preserving merges across two different git-svn repos

We have been using a workflow at work for several months where SVN developers create SVN fix branches which are merged into an integration branch using git and committed back into SVN, a merge at a ...
1
vote
1answer
28 views

Merge a branch with Git Flow keeping the branch still alive

I'm starting using git flow and I understand that doing: git flow feature start my-feature git flow feature finish my-feature I create a feature and then, when i've finished my changes, I merge it ...
1
vote
2answers
39 views

How to get rid of Merge commits in git

I have a repository which is shared by more than 1 person So often I see there are a lot of merge commits in commit history. I want to get rid of them to make my commit history to look cleaner. What ...
2
votes
2answers
79 views

Merge two separate SVN repositories into a single Git repository

We have two Subversion repositories, each with a single project. So: svn://server/svn/project_a svn://server/svn/project_b They are separate projects, and are in separate repositories with ...
2
votes
2answers
124 views

Git - Merge vs rebase

I have had a look at git rebase vs git merge But I'd like to be sure about which solution to choose in this case : I want to implement a new feature on Master so i branch it to a new Feature branch. I ...
0
votes
1answer
13 views

3 pane merge vs 2 pane merge in meld

In git when I have a conflict, I've been either using 'git mergetool' which then indirectly brings up meld with a 3 pane interface, or I've also brought up meld directly by using 'meld <path to ...
1
vote
0answers
27 views

Github pull request showing commits that are already in target branch

I'm trying to review a pull request on Github to a branch that isn't master. The target branch was behind master and the pull request showed commits from master, so I merged master and pushed it to ...
0
votes
2answers
52 views

Dependency Management In SCM

For the sake of argument let's say I am working on a project, X, which has a dependency, Y. Now Y is a stand alone open source project regularly maintained and updated by third parties. I check out ...
1
vote
1answer
193 views

“cannot pull into a repository with state: merging_resolved”

After some pulling, merging and conflict resolving, my GIT is stuck. This is what I tried to do (with EGit) on the main project: "Pull" returns "cannot pull into a repository with state: ...
1
vote
1answer
40 views

Git: Is it possible to pull just for one file?

I am working on a GIT branch that has some broken tests, and I would like to pull (merge changes, not just overwrite) these tests from another branch where they are already fixed. I know I can do ...
5
votes
2answers
98 views

Where's the 3-way Git merge driver for .PO (gettext) files?

I already have following [attr]POFILE merge=merge-po-files locale/*.po POFILE in the .gitattributes and I'd like to get merging of branches to work correctly when the same localization file (e.g. ...
0
votes
0answers
20 views

git merge issue with lost history and file changes when discard auto merged files

When I merge another branch on master, there is a conflict in a file. I resolve the conflict and mark it as resolved.Then I make a evil action which reset all other auto merged files and checkout ...
1
vote
2answers
40 views

Interactive rebase: modify a recent commit among a bunch of --no-ff merges

The goal I want to modify a recent commit, using rebase. The magic command is git rebase -i Let's say you're trying to delete the commit-in-question First, find out how far back that commit ...
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
58 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
17 views

Git merge a commit that I already pushed to a remote origin

I just made a commit on my git repository and sent it up to remote origin. There was of course a syntax error in the commit I made. What's the best way to fix the syntax error locally, and then merge ...
1
vote
1answer
37 views

Git breaks merge commit, if won't push it and execute pull with rebase option

Sometimes things that I don't want to happen, happens with my repository. Here is one of scenarios that I want to avoid but don't know the best approach: git init --bare bare.git; git clone bare.git/ ...
3
votes
1answer
41 views

How to determine if a git merge was the wrong way

So we have a branch structure where named branches merge up into the next version up like so... version1 -> version2 => version3 -> etc So any one particular version is a superset of its ...
0
votes
1answer
32 views

git-dulwich:how to merge or rebase?

I try to make a website to provide some server, such as collaborative writing at some purposed aims. But I will not to create the same wheel. So I choose git as VCS(version control system) by using ...
0
votes
0answers
32 views

git merge. Created some files with name HEAD_x

I merged B from A with -X theirs flag. It went well. Here is the sequence of commands: From A: git merge B # shows conflicts git reset --merge # back to normal git merge -X theirs ...
0
votes
0answers
29 views

man gitworkflows: how to merge cherry-picked commits?

The workflow described in "man gitworkflows" is based on master and maintenance branches described as follows : maint tracks the commits that should go into the next "maintenance release", i.e., ...
4
votes
1answer
44 views

git workflow, and merging changes from master into branches

Having struggled with SVN I was told I should check out GIT, as the branches would be ideal for the workflow I am trying to achieve. I have been muddling along and think I have the basics of GIT ...
1
vote
1answer
61 views

GIT: merge two branches into a new one without dependencies in Gerrit

I have two branches in my local repo: branch_1 and branch_2, each is based on the same commit A and contains several commits (heads are A1 and A2 correspondingly). I pushed both of A1 and A2 to ...
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 ...
4
votes
6answers
223 views

git multiple project merging

We will be forking a project into its own codebase, but it will closely follow the project it forked from. I see it working like this: Forked project will develop some initial changes to rebrand ...
1
vote
1answer
52 views

Git merge --no-commit tracked files without committing them

On branch A I had two 'stories', one which I wanted committed to master, one I did not. As these changes were not on feature branches, I needed to separate the two somehow. I used git merge ...
1
vote
4answers
97 views

Coming from mercurial to git - merging?

I have used mercurial for quite some time and now I switched to git, because my new team uses it as default version control tool. Let me explain - In mercurial I clone project from bitbucket, i make ...
1
vote
4answers
83 views

Prevent merge at git pull

Sometimes I type accidentaly the wrong branch name, when I do "git pull origin BRANCH". Is there a way to forbid "git pull origin XXX" when XXX is not the same branch I have currently checked on my ...
3
votes
2answers
69 views

How can I combine git repositories into a linear history?

I have two git repositories R1 and R2, which contain commits from two periods of a product's development: 1995-1997 and 1999-2013. (I created them by converting existing RCS and CVS repositories into ...
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
39 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 ...
2
votes
1answer
112 views

Why after merge does GIT say “Already upto date”, but differences between branches still exist?

I was originally working in 'newfeature' branch and I was called to fix a bug on the live branch urgently. I created a branch for that called 'generalmaintenance', did the job and then switched to ...
2
votes
1answer
57 views

Github remote Branch and Local Git Repo

Added a new Branch to my Github, but can't find a way to have my local repo "know" about it. I have my local repo using the master branch (the only one it knows about), and it is several commits ahead ...
0
votes
1answer
26 views

creating branch out of branch

suppose I have master suppose I do git branch branchA master then I do development on branchA then I want to create another branch from branchA so I do git branch branchB branchA and then I continue ...
0
votes
0answers
45 views

Git: Which repository structure reduces the risk of merge conflicts?

I am going to setup a git repo to sync some data across multiple clients. As the git repo is not accessible - and not even known - to the user, I want to setup a file structure which (if possible) ...
1
vote
2answers
47 views

GitHub Team Usage

Hi I've just gone through the GitHub Learn-in-15 minutes tutorial. GitHub seems very good and easy to pickup. One thing I don't understand is working in a team environment with people who may edit the ...
2
votes
2answers
171 views

How to achieve `git --no-ff --ff-only` which is not allowed

As part our rebase-heavy workflow, I am hoping to use a merge on the master branch. In particular I want to merge only when the topic branch has been rebased onto the most recent master commit thereby ...
3
votes
2answers
75 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 ...

1 2 3 4 5 18