error: RPC failed; result=22, HTTP code = 400

后端 未结 6 1892
忘掉有多难
忘掉有多难 2021-01-02 02:26

I am trying to push my app on to Heroku, but I am getting this error message. I have looked around, someone mentioned about GitHub recently started redirecting http reposito

6条回答
  •  无人及你
    2021-01-02 02:53

    i hope this is not coming to late, but Heroku deployments require a full Git clone. By default, Pipelines clones your repository with a depth of 50 to shorten your build time. You can configure your Pipeline to do a full Git clone in your bitbucket-pipelines.yml file.

    try adding full clone depth to your yml file

      image: node:6
      clone:
         depth: full
    

提交回复
热议问题