Tagged Questions

18
votes
2answers
9k 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 ...
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
133 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
4answers
3k 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
66 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 ...
2
votes
2answers
320 views

synchronize between 2 git repositories

I have 2 bare repositories. They are made like this: ssh git@primary.com git init --bare repo1 ssh git@backup.com git clone --bare git@primary.com:repo1 One is used for development (let's call it ...
2
votes
1answer
44 views

With git how can i merge a repository that has already been merged?

I have a repository that i pulled the changes for, so now it is up to date with the remote repository. Except that now i realized that i needed to pull all of that repositories changes and keep none ...
0
votes
1answer
14 views

inspect changes after a git pull merge

is it possible to play a git diff in the changes brought by the automatic merge after a git pull? Usually, if there are any conflicts i can check on those using normal git diff, but no idea how to ...
0
votes
1answer
69 views

git merge - what are these symbols next to “merge mode by recursive”?

I have a newb question about git. When I use git pull [project name] master to update my core files, I get a bunch of green plus and red minus signals under "merge made by recursive." What are these ...
0
votes
1answer
331 views

git submodules - another puzzle - reference is not a tree

A developer here ran the steps we recommend for git usage, and has lost a submodule commit. I understand that this error means that she pushed in the super project but not in the submodule, but she ...