Closed
Description
I'm trying to use GitClientBase.get_commit_diffs method (v4_0) as follows:
diifs=git_client.get_commit_diffs(
repository_id=repo_id,
project=proj_id,
diff_common_commit=None,
top=None,
skip=None,
base_version_descriptor=GitBaseVersionDescriptor(version=src_commit_id),
target_version_descriptor=GitTargetVersionDescriptor(version=dst_commit_id)
)
I specify repository_id, project_id and IDs for two commits from the repository. But the method returns something different which looks like a recent commit in the repo.
What I do wrong?