0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Git超入門(初期設定)

Last updated at Posted at 2023-10-21

この記事について

この記事は、自身の学習振返り・アウトプットを目的として作成しました。
自身と同じく未経験でエンジニア転職を目指す初学者の方にも見易い内容にしていければと思います。

今回は、Gitの初期設定についてです。

ユーザー名設定

git configコマンドを使います。

<!-- git config コマンド -->
git config --[設定ファイルの種類] [設定項目] [設定する値]

下記のコードでは、
[設定ファイルの種類]・・・global
[設定項目]・・・user.name
[設定する値]・・・"自身のGitHubユーザー名"
です。
エラーが無ければ何も表示されません。

git config --global user.name "自身のGitHubユーザー名"

メールアドレス設定

続けて下記を入力しメールアドレスを設定します。
こちらもエラーが無ければ何も表示されません。

git config --global user.email "自身のGitHubメールアドレス"

ユーザー名・メールアドレス設定確認

登録されたか確認する場合は、以下を一文ずつ入力すると、ユーザー名・メールアドレスが返ってきます。

git config --global user.name
git config --global user.email

設定全般項目を表示する場合は、listオプションを使います。

git config --global --list

デフォルトブランチ設定確認

最後にデフォルトブランチを確認します。

git config init.defaultBranch

上記を入力してmainが表示されない場合は、デフォルトブランチをmainに変更します。

<!-- デフォルトブランチを`main`に変更 -->
git config --global init.defaultBranch main

以上です。
今回始めてQiita投稿させて頂きました。
今後も習熟度向上の為に継続していきたいと思います。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?