1. 作業用ディレクトリを作成
terminal
% cd
% mkdir hoge-project
% cd hoge-project
% git init
2. GitHubの画面からリモートリポジトリを作成
3. リモートリポジトリを登録
terminal
% git remote add origin https://github.com/YOUR-GITHUB-USERNAME/hoge-project.git
4. コミット ~ プッシュ
terminal
% git add test.txt
% git commit -m "first commit"
% git push -u origin main