LoginSignup
0
0

More than 3 years have passed since last update.

gitの初期設定 gitのeditorをVSCodeにする。

Last updated at Posted at 2020-07-02

ターミナルに以下を入力する。
example、example@emailには、それぞれgithabで登録した名前、メールアドレスを入れる。

qiita.rb
$ git config --global user.name "example"
$ git config --global user.email example@email
$ git config --global core.editor 'code --wait'

きちんと登録できたか確認するためには以下のコードを使う。
ruby:qiita.rb
$ git config user.name
$ git config user.email
$ git config core.editor

それぞれ、名前、メールアドレス、code --waitという文字が表示されればきちんと登録されている。

0
0
0

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
0