質問
Githubを使い始めたところなのですが、初期設定の段階で躓いております。
ファイルをpushしようとしたことろ、
最終的に「fatal: protocol 'https' is not supported」と表示され、pushできません。
どこを間違えていると考えられますでしょうか?
ご指導いただけますよう、よろしくお願い致します。
発生している問題・エラーメッセージ
git
1tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~ 2$ mkdir myPortfolio01 3 4tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~ 5$ cd myPortfolio01 6 7tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 8$ git init 9Initialized empty Git repository in C:/Users/tomo7/myPortfolio01/.git/ 10 11tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 (master) 12$ git remote add origin https://github.com/tomohikohanano/myPortfolio01.git 13 14tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 (master) 15$ touch index.html 16 17tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 (master) 18$ git add index.html 19 20tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 (master) 21$ git commit -m "Create index.html" 22[master (root-commit) 8a2ff76] Create index.html 23 1 file changed, 0 insertions(+), 0 deletions(-) 24 create mode 100644 index.html 25 26tomo7@HP-ENVYx360-13-TmhkHnn MINGW64 ~/myPortfolio01 (master) 27$ git push origin master 28fatal: protocol 'https' is not supported 29
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/13 10:56