2017-04-24 22 views
0

tree_idのファイルのリストを取得する方法はありますか?AWS codeCommitのtree_idからファイルのリストを取得する

実際に私はこれを行う正しい方法を見つけることができません! 私はtree_idを超えることはできません!あなたの助けのための

GetCommit request inputs

{ 
    "commitId": "string", 
    "repositoryName": "string" 
} 

応答

{ 
    "commit": { 
     "additionalData": "string", 
     "author": { 
     "date": "string", 
     "email": "string", 
     "name": "string" 
     }, 
     "committer": { 
     "date": "string", 
     "email": "string", 
     "name": "string" 
     }, 
     "message": "string", 
     "parents": [ "string" ], 
     "treeId": "string" 
    } 
} 

おかげ

答えて

1

AWS CodeCommitは現在、この使用のための特定のAPIを持っていません。ただし、GetDifferences APIは再帰的なツリーウォークを行います。したがって、beforeCommitSpecifierとしてnullを渡すと、afterCommitSpecifier値より前のすべての変更が表示され、ファイル名がレスポンスに含まれます。 GetDifferences APIのドキュメントは次のとおりです。http://docs.aws.amazon.com/codecommit/latest/APIReference/API_GetDifferences.html

関連する問題