I have a repository with lots of binary files (about 250MB) - I don't know if that is important.

I'm making a new branch and trying to publish it on the central server:

git checkout -b newbranch
git push origin newbranch:newbranch

Now here, git is trying to push 30MB of data to the server. Why?? There are no changes.

Also tried to make a bundle:

git bundle afile master..newbranch
fatal: Refusing to create empty bundle.

What is wrong?

link|improve this question

60% accept rate
that is interesting. good question mode (the bundle example is really good for proving the context) – sehe Apr 14 '11 at 10:20
And origin is really the remote repository you retrieved the orginal branch from? – KingCrunch Apr 14 '11 at 10:40
It is the original repo I cloned from. – stach Apr 14 '11 at 11:07
I tried git gc, git prune to no avail. Plain old diff shows that a newly cloned repo (from the same server) differs in .git/logs/ and both repos have large (210MB) files inside the .git/objects/pack dir, and that files are different (name and content). Is there any command I could inspect the differences with? – stach Apr 14 '11 at 12:06
I gave up - I created a new remote, exactly identical to the origin, a told git to fetch it. Almost no data was downloaded. Then I created a local branch out of it (new_master), and another branch (new_copy). I could successfully push the new_copy to the server without sending any large amount of data over network (using the new remote) Still it would nice to know what was wrong with the original remote. – stach Apr 14 '11 at 12:46
show 1 more comment
feedback

2 Answers

It's to do with the way git stores the data and how a push works. I'm guessing that pushing the new branch is not what's causing the data transfer but a previous commit that's also missing from origin is being pushed as well.

This is why git's a very bad idea for log files - I tend to add them to the .gitignore file so they never get committed, even by mistake :)

link|improve this answer
a bit of smoke and mirrors tactics there – sehe Apr 14 '11 at 17:41
No, a new checkout with a new remote has the same HEAD hash as the existing one, so one commits were outstanding. – stach Apr 14 '11 at 19:24
no commits are outstanding for that branch - that doesn't mean that there definitely aren't objects in your repository that aren't in the remote, it just means that they aren't part of your new branch. – deanWombourne Apr 15 '11 at 10:25
Ok I understand the reasoning - maybe there were some objects - but where did they come from (the HEAD was the same)? And how I can check what is inside those objects? – stach Apr 15 '11 at 20:59
feedback

Maybe not a useful answer, but I tried this exact thing, and git didn't send up any objects. So maybe there was a commit in there, and you didn't realize it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.