LoginSignup
1
0

More than 1 year has passed since last update.

【Git】グローバルな.gitignoreを設定する方法

Last updated at Posted at 2022-07-22

~/.config/git/ignoreを作成する

~/.config/git/ignoreを作成して.gitignoreと同様に記述します。

~/.config/git/ignore
.DS_Store

ファイルを指定して設定する

任意のファイルを作成して内容を記述します。

ターミナル
$ echo .DS_Store > ~/.gitignore_global

以下のコマンドを実行するか~/.gitconfigに設定を記述します。

ターミナル
$ git config --global core.excludesFile ~/.gitignore_global
~/.gitconfig
[core]
  excludesfile = /User/ユーザー名/.gitignore_global
1
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
1
0