mirror of
https://github.com/odoo/runbot.git
synced 2025-04-04 09:11:00 +07:00
[ADD] *: support for empty commits
The Commit test object now allows a tree of `None` (or an empty dict, same diff) in which case it will create an empty commit (a commit which uses the same tree as its parent).
This commit is contained in:
parent
3cdcba2f26
commit
b0995adda0
@ -650,6 +650,7 @@ class Repo:
|
|||||||
|
|
||||||
hashes = []
|
hashes = []
|
||||||
for commit in commits:
|
for commit in commits:
|
||||||
|
if commit.tree:
|
||||||
if commit.reset:
|
if commit.reset:
|
||||||
tree = None
|
tree = None
|
||||||
r = self._session.post('https://api.github.com/repos/{}/git/trees'.format(self.name), json={
|
r = self._session.post('https://api.github.com/repos/{}/git/trees'.format(self.name), json={
|
||||||
|
Loading…
Reference in New Issue
Block a user