GitHub
Gitを利用したMicrosoftのサービス
https://github.com/
GitHub Pages
GitHub Actions
https://docs.github.com/ja/actions
GitHub での大きいファイルについて - GitHub Docs
GitHub CLI
更新内容の確認
$ git status
ファイルの更新と追加の確認
変更をステージング
全部
$ git add .
特定のファイルだけ
$ git add ファイル名
コミット
$ git commit -m "コメント"
GitHubのリポジトリと接続
$ gh repo create
リモートへプッシュ
$ git push origin main
リモートと同期
$ gh repo sync