$ git remote add interface https://github.com/interface-git-hub/pico_blink2⏎   <- リモートinterfaceのリポジトリを追加（登録）
$ git remote -v⏎
interface       https://github.com/interface-git-hub/pico_blink2 (fetch)           <- リモートinterfaceが追加された
interface       https://github.com/interface-git-hub/pico_blink2 (push)
origin  https://github.com/takasehideki/pico_blink2 (fetch)
origin  https://github.com/takasehideki/pico_blink2 (push)
$ git fetch interface develop⏎                    <- リモートinterfaceのブランチdevelopをフェッチ
 * branch            develop    -> FETCH_HEAD
 * [new branch]      develop    -> interface/develop
$ git branch -a -v⏎
・main                      9fb44d7 不具合対応
  remotes/interface/develop b82cbe9 機能追加      <- ブランチremotes/interface/developが追加された
  remotes/origin/main       9fb44d7 不具合対応
$ git log --all --graph --oneline⏎
・9fb44d7 (HEAD -> main, origin/main) 不具合対応
| * b82cbe9 (interface/develop) 機能追加          <- 取得したコミット
|/
・e41bffc 3回点滅
・cd5553a 点灯時間を1->0.1秒
・ea0474f 最初のコミット
$ git show --stat b82cbe9⏎
commit b82cbe9943a7e9ca47ab5d365e02d85a4d4b388c (interface/develop)   <- developブランチのコミット情報が分かる
Author: MATSUOKA Takashi <matsujirushi@live.jp>
Date:   Sun Apr 7 14:11:31 2024 +0900

    機能追加

 pico_blink.ino | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)
