うろ覚えだったので記載

Gitの設定ファイル は三種類

  • system : 全ユーザー
  • global : 該当ユーザーの全リポジトリ
  • local : リポジトリ単位

優先度は以下 local > global > system

設定確認方法

  • git config <パラメータ名>
  • git config –<local,global,system> <パラメータ名>

git config –local remote.origin.url git remote -v

一覧表示 git config -l 全優先度を加味して表示されるっぽい

リモートにコードをPush

ユーザー名の登録

git remote add <リモート名> <リモートURL>

git push -u origin main