GitHub PagesでHello Worldしよう
はじめに
GitHubのページを見ながら、GitHub PagesによるHello Worldページを作成したい。
手順
新しいレポジトリ作成
GitHubで「Create a new repository」ページでRepository nameを{ユーザ名}.github.ioを入力する。
レポジトリをクローン
今回はMacのTerminalで行うこととする。
ページでは該当のフォルダーでgit clone https://github.com/{ユーザ名}/{ユーザ名}.github.io
でクローンするということだが、remote: Repository not found.
エラーが出た。
SouceTreeでCloneしたらremote: Repository not found.となった時の対応方法によると、上記エラーの原因がユーザー名とパスワードを入力しないと認証できないためらしい。
上記エラーが出たら、下記コマンドでクローンする。
$ git clone https://{ユーザ名}:{パスワード}@github.com/{ユーザ名}/{ユーザ名}.github.io.git
Hello World
該当ディレクトリで、index.htmlを作成。
$ cd {ユーザ名}.github.io
$ echo "Hello World" > index.html
プッシュする
Gitの一連のコマンドを入力。
$ git add --all
$ git commit -m "Initial commit"
$ git push -u origin master
ブラウザで確認
Author And Source
この問題について(GitHub PagesでHello Worldしよう), 我々は、より多くの情報をここで見つけました https://qiita.com/blackpeach7/items/cb9c70cf3688551c701a著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .