client.notebooks.list_git_commits
A method of the Notebooks endpoint.
- list_git_commits(id: int) ListResponse
Get the git commits for an item on the current branch
API URL:
GET /notebooks/{id}/git/commitsimport civis client = civis.APIClient() response = client.notebooks.list_git_commits(...)
- Parameters:
- idint
The ID of the item.
- Returns:
civis.ListResponse- commit_hashstr
The SHA of the commit.
- author_namestr
The name of the commit’s author.
- datestr (time)
The commit’s timestamp.
- messagestr
The commit message.