1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

githubで初pushをした時に、fatal: protocol 'https' is not supportedのエラー発生

Posted at

Githubを初めて使ったときに起きた不具合です。
progateを学んだ直後の初学者の方であれば、同じような不具合に出くわすかもしれません。

##環境

□OS:Windows10 home 64bit

##不具合に至る経緯

progateで紹介された下記記事に従って、Gitのインストール&Githubの登録を実施しました。
https://prog-8.com/docs/git-env-win

しかし、記事内の「④Githubにプッシュする」の工程を行った際に不具合が発生。

##不具合の詳細

記事に従って、下記の順番でコマンドを実行。

$ mkdir mysite
$ cd mysite
$ git init
$ git remote add origin <URL>
$ touch index.html
$ git add index.html
$ git commit -m "Create index.html"

↑ここまで上手くいった

$ git push origin master

↑最後に、このコマンドを実行する際に不具合が発生。
以下のようなエラーメッセージが表示されてしまった。

fatal: protocol 'https' is not supported

#原因、および解決方法

「$ git remote add origin 」を実行した際に、制御文字が入ってしまったとのことです。
そのため、まずは以下のコマンドを実行。

git remote set-url origin <URL>

その後に、「$ git push origin master」をやり直したらうまくいきました。
解決のために、下記ページを参考にしました。
https://teratail.com/questions/253312

この不具合を通じて、プログラミング初学者にとって「ググる能力」が大切だと学びました:sweat_smile:

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?