fix: force push is now pushing the whole node data instead of delta
This commit is contained in:
parent
3e552cb406
commit
3774419b7e
@ -1 +1 @@
|
|||||||
Subproject commit cb4cdd044464cbc138fbbaad68c787a6c9b9355d
|
Subproject commit 730e6a9d37b5c617b78dba1503f282032c4bb027
|
@ -637,7 +637,7 @@ class SessionCommit(bpy.types.Operator):
|
|||||||
def execute(self, context):
|
def execute(self, context):
|
||||||
try:
|
try:
|
||||||
porcelain.commit(session.repository, self.target)
|
porcelain.commit(session.repository, self.target)
|
||||||
porcelain.push(session.repository, 'origin', self.target)
|
porcelain.push(session.repository, 'origin', self.target, force=True)
|
||||||
return {"FINISHED"}
|
return {"FINISHED"}
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.report({'ERROR'}, repr(e))
|
self.report({'ERROR'}, repr(e))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user