We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dec7a8 commit 0d4b4eaCopy full SHA for 0d4b4ea
1 file changed
doc/source/tutorial.rst
@@ -297,7 +297,10 @@ Access objects and add/remove entries. Commit the changes::
297
# Access the entries directly
298
index.add(['my_new_file']) # add a new file to the index
299
index.remove(['dir/existing_file'])
300
- new_commit = index.commit("my commit message")
+ new_commit = index.commit("my commit message") # commit by commit message first
301
+ my_author = Actor("An author", "author@example.com")
302
+ my_committer = Actor("A committer", "committer@example.com")
303
+ next_commit = index.commit("my commit message", author=my_author, commiter=my_committer) # commit by commit message and author and committer
304
305
Create new indices from other trees or as result of a merge. Write that result to a new index file::
306
0 commit comments