# ①準備した題材のリポジトリの確認
$ git remote -v⏎
                                         <- リモートはない
$ git branch -a⏎
・main                9fb44d7 不具合対応  <- ブランチはmainのみ
$ git log --all --graph --oneline⏎
・9fb44d7 (HEAD -> main) 不具合対応       <- コミットは4つ
・e41bffc 3回点滅
・cd5553a 点灯時間を1->0.1秒
・ea0474f 最初のコミット

# ②リモートの追加
$ git remote add origin https://github.com/matsujirushi/pico_blink2⏎   <- リモートoriginを追加（URLの部分は適時変更）
$ git remote -v⏎
origin  https://github.com/matsujirushi/pico_blink2 (fetch)           <- リモートoriginが追加された
origin  https://github.com/matsujirushi/pico_blink2 (push)
