MSのドキュメントによると、VSTS用の 'refs' APIは、特定のコミットから新しいブランチを作成できるようにする必要がありますが、動作させることができません。ここで私は(PowerShellで)持ってPOCのコードは次のとおりです。VSTS REST refs API for GITブランチ作成
$uri = 'https://{account}.visualstudio.com/{project}/_apis/git/repositories/{repository}/refs?api-version=1.0';
[array]$requestList = @();
$requestObj = New-Object -TypeName psobject;
$requestObj | Add-Member -MemberType NoteProperty -Name "name" -Value 'refs/heads/api-branch1';
$requestObj | Add-Member -MemberType NoteProperty -Name "oldObjectId" -Value "0000000000000000000000000000000000000000";
$requestObj | Add-Member -MemberType NoteProperty -Name "newObjectId" -Value "272c5f931889e5c6cc61a6fdb19ad00eeebf2d77";
$requestList += @($requestObj);
$header = Get-AuthHeader;
$body = ConvertTo-Json -InputObject @($requestList);
Write-Host $body;
$response = Invoke-RestMethod -Uri $uri -Headers $header -Method Post -Body $body -ContentType application/json;
Write-Host $response;
リクエストボディを書き込み、ホスト文によって報告されたように、正しくフォーマットされた、と私はnewObjectIdが正しいコミットIDであることを確認しました。私は、スクリプトを実行したときしかし、私は次のエラーを取得する:
Invoke-RestMethod : {"$id":"1","innerException":null,"message":"Value cannot be null.\r\nParameter name: refUpdates","typeName":"System.ArgumentNullException, mscorlib, Version=14.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089","typeKey":"ArgumentNullException","errorCode":0,"eventId":0}
At C:\Users\gappleton\Documents\VSTS\Scripts\Test-Methods.ps1:119 char:13
+ $response = Invoke-RestMethod -Uri $uri -Headers $header -Method Post ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (System.Net.HttpWebRequest:HttpWebRequest) [Invoke-RestMethod], WebException
+ FullyQualifiedErrorId : WebCmdletWebResponseException,Microsoft.PowerShell.Commands.InvokeRestMethodCommand
は、誰もが成功し、新たなREF(ブランチやタグ)を作成するには、このAPIを使用していますし、もしそうなら、あなたは私が私が何を特定するのに役立ちます間違っている?以下は、APIに関するMSのドキュメントへのリンクです。事前にお寄せいただきありがとうございます!
Git Refs : VSTS REST API Documentation