0
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 3 years have passed since last update.

ターミナルのコマンドを実行してGithub Pagesでサイトを公開する方法

Last updated at Posted at 2019-12-03

自分でちょっとつまづいて、忘れそうなので備忘録として書き残しておきます。

Github Pagesでサイトを公開する方法です。

Github Pagesでポートフォリオサイトを作成したけど、GithubDesktopでGitHubへプッシュするときに下記のエラーメッセージが出て、プッシュができないという状況になりました。

どうしようかと思って色々調べていると、ターミナルから下記のコマンドを実行したら、プッシュができました。

リポジトリにコミット

$ git add --all
$ git commit -m "任意のメッセージ"

GitHubへプッシュ

$ git push -u origin master

パスワードを入力して、実行できました。

0
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
0
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?