pasberth氏のレクチャーのもと、 github pageをオープンできるようになったので、忘備録。 GitHubにアカウントを作って メールアドレスの認証(verify)を事前に済ませていること前提。 //自分のローカルディレクトリを作成し、リポジトリを取得する(sampleRepoを作った場合) git clone https://github.com/<accountName>/sampleRepo.git cd sampleRepo touch README.md git add README.md git commit -m init git push origin master