基本用語

commitコメント

ghコマンド

glab

設定

初期設定

git config --global user.name "ユーザー名"
git config --global user.email "メールアドレス"

設定例

git config --global user.name "f11"
git config --global user.email "[email protected]"

パスワード省略

初回だけパスワード入力が必要その後はいらない

git config --global credential.helper cache 'cache --timeout=86400'

PC内にパスワード平文で保持

git config --global credential.helper store

参考サイト

Gitで毎回パスワードを聞かれないようにする - Qiita

各種コマンド

clone

git clone GitのURL