File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -297,7 +297,10 @@ Access objects and add/remove entries. Commit the changes::
297297 # Access the entries directly
298298 index.add(['my_new_file']) # add a new file to the index
299299 index.remove(['dir/existing_file'])
300- new_commit = index.commit("my commit message")
300+ 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
301304
302305Create new indices from other trees or as result of a merge. Write that result to a new index file::
303306
You can’t perform that action at this time.
0 commit comments