Skip to content

Commit 0d4b4ea

Browse files
firm1firm1
authored and
firm1
committed
add documentation
1 parent 1dec7a8 commit 0d4b4ea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

doc/source/tutorial.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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", "[email protected]")
302+
my_committer = Actor("A committer", "[email protected]")
303+
next_commit = index.commit("my commit message", author=my_author, commiter=my_committer) # commit by commit message and author and committer
301304
302305
Create new indices from other trees or as result of a merge. Write that result to a new index file::
303306

0 commit comments

Comments
 (0)