1
vote
1answer
112 views

Git Pull: EGit with GitHub

I followed the tutorial http://wiki.eclipse.org/EGit/User_Guide#GitHub_Tutorial to setup EGit with GitHub. When I want to pull I had the same problem described here: The current branch is not ...
1
vote
1answer
128 views

GIT: How to make sub-branch the master branch?

I've seen this answer, but I'm unsure of what the answerer meant by using git branch -f .. in order to complete the task. I have three branches, my master branch has a bunch of files that I don't ...
1
vote
1answer
30 views

Github branches for multiple customers

I have an iOS that app that I need to deploy to several clients. Each clients has a few small changes in the app (images, provisioning files, app name, etc). 95% of the app is the same for all ...
1
vote
1answer
59 views

Maintain branches in GIT without merging with master

At my office, we have a home grown content management system. Slowly but steadily, we have setup 60 instances of our CMS. Yes, we are a big company; an NGO. Most of our offices use the CMS in its ...
0
votes
1answer
38 views

Git: Update Master with work done on a Branch

I am pretty new to Git. I have created a repository and added some files to the master branch. After that, each time wanted to work on a particular subproject, i have been doing "create new branch" ...
3
votes
2answers
4k views

git push “ The remote end hung up unexpectedly ”

I have created a new branch in my local repository and after some commits, I wanted to push it to the remote repository. git push origin new_branch I have this error: $ git push origin ...
2
votes
3answers
297 views

Why does git say I am 40 commits ahead when I seem up to date and a push-pull (no files) fixes it?

I switch to master and it says I am ahead by 40 commits: $ git checkout master Switched to branch 'master' Your branch is ahead of 'origin/master' by 40 commits. But when I then do a pull it says I ...
2
votes
3answers
255 views

what should the master branch contain in git

I have read about multiple different git branching strategies and I was suprized that the master branch was often used as a 'production-ready' branch and there would be an additional uat and dev ...
1
vote
1answer
294 views

(Ma)git branches drive me crazy

Using Emacs/Magit, I had first a very smooth git experience in another project, but in my actual project I'm confused by all the branches and annoyed by the not tracked #file.ext# that pop up al the ...
2
votes
2answers
299 views

how to create a git branch that is independent of the master branch?

I want to create a git branch that will work independent of the master branch. I want all the code that is present in the master till now, but any further changes in the master should not reflect in ...
1
vote
1answer
61 views

Modifications visible in all branches

When I switch to a branch, I can see modifications done in other branch ... Sample : - I'm on master - I switch to branc A - I do some modifications - status show me modified files - I switch to ...
1
vote
2answers
4k views

Gerrit error when Change-Id in commit messages are missing

All I set up a branch in the remote repository and made some commits on that branch. Now I want to merge the remote branch to the remote master. Basically follows are my operations: checkout ...
0
votes
3answers
303 views

Git checkins to branch if master is out of sync

Recently moved from svn to git, pardon my newbie question. In our release process, we code against the master (and development branches), we have releases once every few weeks, at that point in time, ...
0
votes
2answers
71 views

Moving all commits beyond initial commit off master

i have been developing committing on the master branch, and would like to move all commits beyond the "initial commit" to a separate development branch, and keep the master for release versions. ...
5
votes
1answer
2k views

Git: Will merging master into a topic branch often avoid conflicts later on?

Lets say for the sake of argument that we don't care much about history. If I have a master branch that is being updated somewhat often and I have a shared topic branch that is rather long lived, ...
15
votes
1answer
16k views

How to tell Git to always pull the master branch?

I find git docs very cryptic regarding this issue. I want to do a simple thing, but it seems doing it is not simple at all. I have the following situation: $ git remote -v origin ...
1
vote
2answers
259 views

Merging changes from master into all branches using Git?

I use git to maintain multiple working copies of my code. The idea is that I can check out any branch, build and run it to see how the branch's feature x fits in with the current state of the code. ...
1
vote
1answer
3k views

Using GIT with GIT GUI - Master and Branching

I am trying out GIT, and using the GIT GUI (from msysgit) with it. I am trying to make a new branch, but somehow it keeps taking over the master branch. The master branch still appears, but not as ...
52
votes
4answers
8k views

Putting uncommitted changes at Master to a new branch by Git

How can you put uncommitted changes to a branch TEST when I am at the branch master?