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?