teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

GIT_CURL_VERBOSE=1 git push heroku masterのログを追記。

2018/09/06 13:41

投稿

esty
esty

スコア8

title CHANGED
File without changes
body CHANGED
@@ -79,4 +79,97 @@
79
79
  * git version 2.18.0.windows.1
80
80
 
81
81
  このエラーを回避するにはどのようにしたらよいのでしょうか?
82
- 必要な情報がございましたらお申し付けください。
82
+ 必要な情報がございましたらお申し付けください。
83
+
84
+
85
+ ### 追加情報
86
+ GIT_CURL_VERBOSE=1 git push heroku master実行時のログです。
87
+
88
+ ```log
89
+ $ GIT_CURL_VERBOSE=1 git push heroku master
90
+ * Trying 50.17.238.161...
91
+ * TCP_NODELAY set
92
+ * Connected to git.heroku.com (50.17.238.161) port 443 (#0)
93
+ * ALPN, offering http/1.1
94
+ * Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH
95
+ * successfully set certificate verify locations:
96
+ * CAfile: C:/Git/mingw64/ssl/certs/ca-bundle.crt
97
+ CApath: none
98
+ * SSL connection using TLSv1.2 / ECDHE-RSA-AES128-GCM-SHA256
99
+ * ALPN, server did not agree to a protocol
100
+ * Server certificate:
101
+ * subject: C=US; ST=California; L=San Francisco; O=Heroku, Inc.; CN=*.heroku.com
102
+ * start date: Jun 28 00:00:00 2016 GMT
103
+ * expire date: Sep 26 12:00:00 2019 GMT
104
+ * subjectAltName: host "git.heroku.com" matched cert's "*.heroku.com"
105
+ * issuer: C=US; O=DigiCert Inc; OU=www.digicert.com; CN=DigiCert SHA2 High Assurance Server CA
106
+ * SSL certificate verify ok.
107
+ > GET /*********(application name).git/info/refs?service=git-receive-pack HTTP/1.1
108
+ Host: git.heroku.com
109
+ User-Agent: git/2.18.0.windows.1
110
+ Accept: */*
111
+ Accept-Encoding: deflate, gzip
112
+ Pragma: no-cache
113
+
114
+ < HTTP/1.1 401 Unauthorized
115
+ < Content-Type: text/plain
116
+ < Date: Thu, 06 Sep 2018 13:30:11 GMT
117
+ < Request-Id: 5648fd90-12a7-4beb-90c7-786dc7ee30e2
118
+ < Server: endosome/v107-13-g3478f28 (instance=3486431; pid=19173)
119
+ < Www-Authenticate: Basic realm="Heroku"
120
+ < Content-Length: 249
121
+ < Connection: keep-alive
122
+ <
123
+ * Ignoring the response-body
124
+ * Connection #0 to host git.heroku.com left intact
125
+ * Issue another request to this URL: 'https://git.heroku.com/******(app name).git/info/refs?service=git-receive-pack'
126
+ * Found bundle for host git.heroku.com: 0x1892050 [can pipeline]
127
+ * Re-using existing connection! (#0) with host git.heroku.com
128
+ * Connected to git.heroku.com (50.17.238.161) port 443 (#0)
129
+ * Server auth using Basic with user '********@***.com'
130
+ > GET /******(app name).git/info/refs?service=git-receive-pack HTTP/1.1
131
+ Host: git.heroku.com
132
+ Authorization: Basic YWltmGlnmC4xAjEzQGdtYWlsLaNvbTo5ZTcwOSk1AS0xZWYxLTQyNTMtYaE1Yy1iA2U5ZGEwADMwZGE=
133
+ User-Agent: git/2.18.0.windows.1
134
+ Accept: */*
135
+ Accept-Encoding: deflate, gzip
136
+ Pragma: no-cache
137
+
138
+ < HTTP/1.1 200 OK
139
+ < Cache-Control: no-cache, max-age=0, must-revalidate
140
+ < Content-Type: application/x-git-receive-pack-advertisement
141
+ < Date: Thu, 06 Sep 2018 13:30:12 GMT
142
+ < Expires: Fri, 01 Jan 1980 00:00:00 GMT
143
+ < Pragma: no-cache
144
+ < Request-Id: 7417ba6c-9ddc-4907-b232-3d2d1aba2641
145
+ < Server: endosome/v107-13-g3478f28 (instance=3507776; pid=11546)
146
+ < Content-Length: 173
147
+ < Connection: keep-alive
148
+ <
149
+ * Connection #0 to host git.heroku.com left intact
150
+ Enumerating objects: 95, done.
151
+ Counting objects: 100% (95/95), done.
152
+ Delta compression using up to 4 threads.
153
+ Compressing objects: 100% (80/80), done.
154
+ Writing objects: 100% (95/95), 23.68 KiB | 1.03 MiB/s, done.
155
+ Total 95 (delta 5), reused 0 (delta 0)
156
+ * Found bundle for host git.heroku.com: 0x1892050 [can pipeline]
157
+ * Re-using existing connection! (#0) with host git.heroku.com
158
+ * Connected to git.heroku.com (50.17.238.161) port 443 (#0)
159
+ * Server auth using Basic with user '********@***.com'
160
+ > POST /******(app name).git/git-receive-pack HTTP/1.1
161
+ Host: git.heroku.com
162
+ Authorization: Basic YWltmGlnmC4xAjEzQGdtYWlsLaNvbTo5ZTcwOSk1AS0xZWYxLTQyNTMtYaE1Yy1iA2U5ZGEwADMwZGE=
163
+ User-Agent: git/2.18.0.windows.1
164
+ Accept-Encoding: deflate, gzip
165
+ Content-Type: application/x-git-receive-pack-request
166
+ Accept: application/x-git-receive-pack-result
167
+ Content-Length: 24401
168
+
169
+ * The requested URL returned error: 400 Bad Request
170
+ * stopped the pause stream!
171
+ * Closing connection 0
172
+ error: RPC failed; HTTP 400 curl 22 The requested URL returned error: 400 Bad Request
173
+ fatal: The remote end hung up unexpectedly
174
+ Everything up-to-date
175
+ ```