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
No known key found for this signature in database
GPG Key ID: E1D3641A7C43AACB
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit cb4cdd044464cbc138fbbaad68c787a6c9b9355d
Subproject commit 730e6a9d37b5c617b78dba1503f282032c4bb027

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))