Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

140
votes
10answers
45k views

How do you merge selective files with git-merge?

I'm using git on a new project that has two parallel -- but currently experimental -- development branches: master: import of existing codebase plus a few mods that I'm generally sure of exp1: ...
25
votes
6answers
8k views

How to import existing GIT repository into another?

I have a (Windows) GIT repository in a folder called XXX, and I have second GIT repository called YYY. I want to import the XXX repository into the YYY repository, add all XXX's change history to ...
18
votes
2answers
6k views

How do I tell git to always select my local version for conflicted merges on a specific file?

Say I'm collaborating with someone via a git repository, and there is a particular file that I never want to accept any external changes to. Is there any way for me to set up my local repo to not ...
17
votes
2answers
8k views

Git merge flattening

If I am working in multiple branches on a single feature, I use git pull branch1 branch2 branch3 to pull all the changes into my master branch. However, all the commit logs of each branch are copied ...
11
votes
2answers
4k views

Git merge errors

I have a git branch called 9-sign-in-out with the perfectly working code that I would like to become the "master" I'm currently on the master branch. $ git branch 9-sign-in-out * master I'm trying ...
10
votes
2answers
9k views

To git checkout without overwriting data

How can you git-checkout without overwriting the data? I run git checkout master I get error: Entry 'forms/answer.php' would be overwritten by merge. Cannot merge. This is surprising, since I ...
9
votes
2answers
147 views

How to get git to correctly merge moved content (not only files)

I am currently looking at a lot of the content tracking features of git. It is very nice to know that git allows me to figure out code which has been moved from one file to another, but I am wondering ...
9
votes
3answers
4k views

How to make git merge handle uncommitted changes to my working tree?

A co-worker and I are both working on the master branch at the moment. I have some code in my working tree that I don't want to commit (debugging statements and the like). Now if he commits changes ...
7
votes
2answers
2k views

Git: How to “undo” a merge

The situation: Starting with the Master at A I branched and made some changes at B then merged that branch back in (C). After making some more changes I was at D but found I needed to deploy the code ...
7
votes
2answers
3k views

How to push/pull Git rebase

I'd like to use git rebase so as to cleanly merge a feature in the master branch (in less commits or at least at the top of the change log). Note that I'm the only one working on the repository. ...
6
votes
3answers
115 views

preventing git merge to master branch

I am using branching to create and deploy custom instances of out platform. These instances usually start as a branch from the 'master' branch, get customized somewhat, get deployed into testing and ...
6
votes
2answers
136 views

Merging to a branch in git without switching to it

I have an application running in a git repository on a branch (say dev). The application modifies the content in some the repository and commits them. I now have to merge these changes into another ...
6
votes
1answer
102 views

How to re-merge a file in the git?

I have 10 files which have conflicts when merging branches. I've resolved all conflicts of the 10 files(took long time). Unfortunately before the commit, I find out that one file has been merged wrong ...
6
votes
1answer
335 views

Git submodule pull request work flow

I am curious about some best practices. There is a git repo that I would like to include as a submodule in my project. I would also like to contribute to this repo and offer pull requests. I have ...
6
votes
1answer
130 views

how does git check if a merge is needed?

According to http://www.kernel.org/pub/software/scm/git/docs/git-update-index.html, git update-index --refresh does this: Looks at the current index and checks to see if merges or updates are needed ...
6
votes
4answers
501 views

Git rebase loses history, then why rebase?

I've been looking into rebasing with Git over the past couple days. Most of the arguments for rebasing say that it cleans up the history and makes it more linear. If you do plain merges (for example), ...
6
votes
2answers
1k views

Pull in changes from a Github fork

Someone forked a Github project of mine and made some changes. How can I merge the changes back in to my upstream version? Also, is it possible to pull in just a specific commit? What I'm looking ...
6
votes
2answers
496 views

block push of trivial merge to git server

A while back I asked our developers to use rebase instead of merge before pushing. Eliminating trivial merges makes for a much easier to follow commit graph (ie: gitk, git log). Sometimes folks still ...
6
votes
3answers
1k views

how can I customize git's merge commit message?

Every time I do a merge I need for a merge commit to be generated and I would like it to have more than just the summary of all the commits. My question is how can I format git-fmt-merge-msg or what ...
6
votes
1answer
1k views

Why does git-rebase give me merge conflicts when all I'm doing is squashing commits?

We have a Git repository with over 400 commits, the first couple dozen of which were a lot of trial-and-error. We want to clean up these commits by squashing many down into a single commit. Naturally, ...
5
votes
3answers
217 views

Efficient project architecture with git

Firstly, let me introduce general architecture of a project. It is hierarchical. We develop server application for our customers. It is stored on main server. Say, local server 1, local server 2, ...
5
votes
1answer
329 views

Git subtree merge strategy or subtree command?

I'm starting a new Zend Framework project in which I will collaborate with a designer. I'm going to maintain this project code using git and usually designers don't speak git (or any programming ...
5
votes
2answers
189 views

How to avoid git rebase killing merge commits?

Given the following git history: C-I origin/master / A-B-F-G-H master \ / D-E branch-b I want to rebase my local master branch on top of origin/master, but I want to preserve ...
5
votes
1answer
64 views

How to prevent merge from falling back to normal merge strategy when a fast-forward merge is not possible?

The git merge command has an option to perform fast-forward merge, but this is not what I want, because if it can't do a fast-forward merge, it uses the normal merge. Is there a git command which ...
5
votes
3answers
141 views

Git: after preparing a real merge commit, how to create a simple commit?

After invoking git merge --no-commit <commit>, performing a commit will result in a merge commit with two (or more) parents. What command to invoke to create a simple commit instead (without ...
5
votes
4answers
2k views

How Do I 'git fetch' and 'git merge' from a Remote Tracking Branch (like 'git pull')

I have set up some remote tracking branches in git, but I never seem to be able to merge them into the local branch once I have updated them with 'git fetch'. For example, suppose I have remote ...
5
votes
1answer
749 views

How Do You Get the bufspec While Using Vimdiff Through Git

I've read Vimdiff and Viewing differences with Vimdiff plus doing various google searches using things like "vimdiff multiple", "vimdiff git", "vimdiff commands" etc. When using do or diffg I get ...
5
votes
2answers
458 views

What is a trivial merge in git?

Sometimes when I do a pull instead of a rebase after a simple one file change commit I see the following in the master log: Trivial merge But there's no diff of what changed? What's the point of ...
4
votes
1answer
119 views

Can someone explain this interesting git merging behaviour

I have two branches, A-C (master) \ B-D (clean) In A..C I added a directory with a bunch of files. In A..B I added the exact same directory and files, such that git diff C..B shows no changes ...
4
votes
1answer
998 views

GIT warning: too many files skipping inexact rename detection

Am aware that the the default rename limit is 100 and can increase this value using the config "diff.renamelimit config" What am worried is, if this config is not setup, will there be a wrong merge, ...
4
votes
1answer
166 views

Git: How do I merge complex branches that have widely diverged with some missing history?

I have two "branches", both of which started from the same code base, but both of which were imported to git after they diverged. The prior history is lost, and additionally both branches have ...
4
votes
1answer
147 views

use git cherry-pick now but merge changes later

I have two branches and want to cherry-pick a change from one and move it to the other. At a later date, when I merge the two repositories what effect will the cherry-pick have since the commit IDs ...
4
votes
3answers
175 views

tool for solving “trivial conflicts” in git

Do you know any tool/switch for git commands which help me prevent conflicts or speed up merges? Currently I often got "trivial conflicts" such this: ++<<<<<<< HEAD ++======= + ...
4
votes
1answer
1k views

Tell git not to merge binary files but to choose

When the binary files, swfs, jars and flvs are changed locally, and I try to pull in changes, git tries to merge them and reports conflict. And then, I branch to a temporary branch, and commit the ...
4
votes
3answers
2k views

git: merge two branches: what direction?

We have the following situation: A --- B --- C --- ... --- iphone / ... --- last-working --- ... --- master Between last-working and iPhone, 32 commits were made. Between ...
4
votes
1answer
205 views

Strange git merge issue

This is how gitk currently looks in one of our projects: https://dl.dropbox.com/u/2582508/gitk.png This apparently, from all we can tell, happened after a single "git merge" was done with a remote ...
3
votes
1answer
26 views

Add a git merge driver to the repository?

I'm creating a merge driver. I have defined a .gitattributes file as follows: filename merge=mergeStrategy I have created the merge driver in $PROJECT/.git/config as follows: [merge ...
3
votes
2answers
101 views

Is it better to use merge or rebase when two people are on the same remote feature branch and having conflicts that will be dcommitted to svn

My colleague and I are having an vigorous discussion about merge strategies and I'm hoping we can get some information to help resolve it. The tl:dr is: Should we use merge or rebase when pulling ...
3
votes
0answers
122 views

strange output during git merge

I am in a clone named /private/gmills, and I ran git merge main_int. I am seeing a reference to another clone for some other user on a different machine. What does this mean? I have only 1 remote ...
3
votes
1answer
162 views

How to undo a git merge squash?

I have just done a git merge --squash feature-branch into my develop branch. The problem is that the above command updated the head without creating a new commit. My intention was to create one ...
3
votes
1answer
89 views

Git: regular merge/rebase of long-living bugfix branches to master

Context We use several git repositories with the same workflow, involving two branches, and are wondering how best to "synchronize" commits from one to the other. Put simply, our git repositories ...
3
votes
4answers
2k views

Trouble merging with Git

Hey all, I'm back, and still a beginner at using Git. So I created my own fork. I cloned it. I updated my fork, committed, and pushed. But then the main fork updated, and I tried to update my own ...
3
votes
1answer
379 views

undo a git merge, but keep later changes (and rewrite history)?

I can't seem to find this question anywhere and I'm a little puzzled whether this just isn't possible or maybe no one is stupid enough to do what I have done. But here goes. Also if anyone has ...
3
votes
1answer
525 views

Git - Merge vs Rebase for my workflow

I've been doing some reading on how both the git merge and git rebase operations work, and I think I have a very basic understanding of the differences. I've seen the diagrams :-) Despite that, I'm ...
3
votes
1answer
151 views

How to setup a git driver to ignore a folder on merge

I've already did an extensive search, read a lot of SO questions and solutions and tried it different ways, but I've been unable to do what I want, which is fairly simple. I have the master branch, ...
3
votes
4answers
552 views

Does GIT have evil twin issues?

In ClearCase evil twin occurs when two files are found with the same name in two different versions of the directory, and If the element OIDs are different but the names are the same. In GIT the SHA1 ...
3
votes
1answer
161 views

Merging two remote repositories in Git

I want to merge two remote repositories in Git. One is mainstream repository, which I do not have write permission. I want to track its master branch. The other is maintained by us, I have full ...
3
votes
2answers
3k views

git-merge with repository on local filesystem

For some context: I just upgraded Ubuntu which broke my existing gitosis installation (see here: bug #368895), and have just reinstalled gitosis from packages. I now want to migrate my whole config ...
2
votes
3answers
50 views

Git: Proper way of merging changes to an earlier commit (manually rewind and replay?)

I'm not sure what the correct way of addressing this scenario is in git, whatever I do I get weird results. I have a version X of a file, in commitish A. Over time, this file has been modified and is ...
2
votes
3answers
85 views

Managing local-only changes with git

On my local branch, I have some personal (local-only) changes to a Makefile (just changing the path to the compiler). Obviously I don't want to commit those changes in as they are only relevant to me. ...

1 2 3