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?

何かしらコードを書いた際、GitHubにどうやって載せるか忘れてしまうので、備忘録的にまとめる。

やりたいこと

手元のコードをGitHubに載せて見てもらいたい!

手順

git init
git add .
git commit -m "コミットメッセージ"
git remote add origin git@github.com:{アカウント名}/{リポジトリ名}.git
git push origin main

これだけです。masterブランチがデフォルトだった場合、後々めんどくさいのでmainに変更するコマンドもありますが、最近はmainがデフォルトになっている?ようです。

本当に最小限のことしか書いていない、青二才学生の日記なので間違いがあるかもしれません。指摘事項などあれば教えてください…

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?