Skip to content

add author and committer in params of the commit function #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Nov 17, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix syntax error
  • Loading branch information
dralliw committed Apr 9, 2014
commit 3a1e0d7117b9e4ea4be3ef4895e8b2b4937ff98a
2 changes: 1 addition & 1 deletion git/index/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def move(self, items, skip_errors=False, **kwargs):

return out

def def commit(self, message, parent_commits=None, head=True, author=None, committer=None):
def commit(self, message, parent_commits=None, head=True, author=None, committer=None):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The added parameters are not yet documented in Commit.create_from_tree.

"""Commit the current default index file, creating a commit object.

For more information on the arguments, see tree.commit.
Expand Down