Get contents of a path within a specific commit
(repo, commit, path)
| 28 | |
| 29 | |
| 30 | def get_contents(repo, commit, path): |
| 31 | """Get contents of a path within a specific commit""" |
| 32 | return repo.git.show('{}:{}'.format(commit.hexsha, path)) |
no outgoing calls
no test coverage detected