Github API のヘルプが必要です。
APIを介してファイルの新しいバージョンをコミットする必要があります。ポストリクエストをに送信することでこれを達成しようとしています
https://api.github.com/repos/:username/:repo:/git/commits/
データ付き
{
"login": "username",
"token": "auth_token",
"parent_commit": "sha",
"message": "commit message.",
"content": {
"path": "full/path",
"mode": "edit",
"data": "new content"
}
}
しかし、結果で失敗します-見つかりません。
このリクエストをどこに送信すればよいか、またこの形式が正しいかどうかは誰にもわかりませんか?
(フォーマットはhttp://swanson.github.com/blog/2011/07/23/digging-around-the-github-api-take-2.htmlに触発されています)
ありがとうございました!