fix: force push is now pushing the whole node data instead of delta

This commit is contained in:
Swann
2021-06-22 10:41:36 +02:00
parent 3e552cb406
commit 3774419b7e
2 changed files with 2 additions and 2 deletions

View File

@ -637,7 +637,7 @@ class SessionCommit(bpy.types.Operator):
def execute(self, context):
try:
porcelain.commit(session.repository, self.target)
porcelain.push(session.repository, 'origin', self.target)
porcelain.push(session.repository, 'origin', self.target, force=True)
return {"FINISHED"}
except Exception as e:
self.report({'ERROR'}, repr(e))