Fatal: git write tree failed to write tree

I have a private repository in a bitbucket. There are two branches: master , and event designer. The designer makes the design in the eventdesign branch. Now I want to merge the eventdesign branch with the wizard so that I can use design.i using the following command.

git fetch origin

git merge of the original / eventdesign

But I got the following error:

error: invalid object 100755 6b852b618ad4e91b4c5fe65693731f160b9fb3cb for 'packages / frozennode / administrator / css / ui / images / ui-icons_0073ea_256x240.png'

fatal: git write tree failed to write tree

I searched a lot, but I can’t understand. Any suggestion will be assigned.

thank

+4
source share
1 answer

Yes, I did it. I just remove the event event event from the local

git branch -d origin / eventdesign

and then I create a local eventdesign and track the remote branch as

git checkout --track origin / eventdesign

+1
source

All Articles