Gitの認証
以下の認証コードをGitの導入時にやっておかないとCloneやpushなどができない
// ユーザ名を設定する
git config --global user.name "ユーザ名"
// メールアドレスを設定する
git config --global user.email "メールアドレス"
// 設定内容を確認する
git config --global --list
user.name=設定したユーザ名
user.email=設定したメールアドレス1 分で読めます
以下の認証コードをGitの導入時にやっておかないとCloneやpushなどができない
// ユーザ名を設定する
git config --global user.name "ユーザ名"
// メールアドレスを設定する
git config --global user.email "メールアドレス"
// 設定内容を確認する
git config --global --list
user.name=設定したユーザ名
user.email=設定したメールアドレス