コンテンツにスキップ

Git初期設定

Gitをインストールした際の初期設定をまとめる。

インストール

homebrewを利用している場合は以下のコマンドを実行する。

Bash
brew install git git-lfs gh

初期設定

ユーザ名とメールアドレスの設定を行う。

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

デフォルトブランチをmainにする。

Bash
git config --global init.defaultBranch main

グローバルgitignore

毎回gitignoreに書くのが面倒なものやOS依存で自動生成されるファイルはグローバルgitignoreに設定する。

Bash
touch ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global

自分は.gitignore_globalに以下の設定を行なった。

Text Only
*.DS_Store

設定が正しく反映されているか以下のコマンドを実行する。

Bash
git config --get core.excludesfile

GitHubへのログイン

GitHubのプライベートリポジトリへのアクセスにはあらかじめ、ghで認証を済ませておくとよい。

Bash
gh auth login