LoginSignup
0

More than 5 years have passed since last update.

githubの初期設定

Last updated at Posted at 2018-04-15
git config --global user.name githubで登録したユーザー名
git config --global user.email gitubuで登録したメルアド
git config --global core.editor "atom --wait"     #ATOMの場合
git config user.name         #ユーザー名の確認
git config user.email                #メールアドレスの確認
git config core.editor      #エディタの確認
git config --list           #設定をまとめて確認 
$ cat ~/.gitconfig          #設定ファイルの確認

参照リンク:gitconfig の基本を理解する
https://qiita.com/shionit/items/fb4a1a30538f8d335b35

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0