php エディタ Xiaoxin は、go-github の使用時に問題が発生しました。送信の作成時に 422 エラーが発生し、「更新は早送りされません」というメッセージが表示されました。この問題の具体的な原因は何ですか?どうやって解決すればいいでしょうか?次に、具体的な回答をさせていただきます。
次の関数を使用して、go-github
ライブラリを使用してブランチに新しいコミットを単純に作成します。
リーリー
リーリー
なぜ早送りしないのでしょうか?これは、既存のブランチ/コミットから作成された新しいコミットです。ps:
コミット時に新しいファイルが作成されることは、絶対に望ましくありません。
解決策func ghapicreatecommit(ctx context.context, client *github.client, commitopts *commitoptions) error { // get the reference of the branch ref, _, err := client.git.getref(ctx, repoowner, commitopts.repo, "refs/heads/"+commitopts.branch) if err != nil { return err } commit, _, err := client.git.getcommit(ctx, repoowner, commitopts.repo, *ref.object.sha) if err != nil { return err } commit.message = github.string(commitopts.commitmessage) // create a new commit with the updated commit message newcommit, _, err := client.git.createcommit(ctx, repoowner, commitopts.repo, commit) if err != nil { return err } // attach the new commit to the reference ref.object.sha = newcommit.sha // update the branch reference to point to the new commit _, _, err = client.git.updateref(ctx, repoowner, commitopts.repo, ref, false) if err != nil { return err } return nil }
commit は、新しいコミットの
parents を含む、新しいコミットに関するいくつかの情報を指定するために使用されます (
実装を参照)。
parents を持っているため、これはブランチへの早送りプッシュではありません。ブランチに迅速にプッシュするには、新しいコミットの
parents が古いコミットを指す必要があります。
リーリー
以上がgo-github および 422 でコミットを作成できません - 更新が早送りされませんの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。