Tester le checkout avant le commit

This commit is contained in:
Benjamin Bohard 2020-09-07 18:40:07 +02:00
parent d509550f69
commit 6345c3d081
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,8 @@ def git_integration(func):
author = repo.default_signature
committer = author
repo.checkout('refs/heads/master')
index = repo.index
for fp in master_add_paths:
index.add(fp)
@ -95,6 +96,7 @@ def git_integration(func):
tree,
parents)
repo.checkout(f'refs/heads/{branch_name}')
for fp in branch_add_paths:
index.add(fp)
index.write()