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.

グローバルなignoreファイル

Last updated at Posted at 2022-11-18

~/.gitignore_global を指定するのをやめ、デフォルトの置き場に置こう
これを読んで、
「ふんふん、で?」
と思った自分にビックリした。

自分で自分をお膳立てだ。コピペでいけるように整理する。
環境は macOS Ventura + zsh です。

% vi ~/.config/git/ignore

~/.config/git/ignore
.idea
.DS_Store

グローバルなignoreファイルを設定する

% git config --global core.excludesFile ~/.config/git/ignore

設定できているか確認する

% git config --global core.excludesFile
takepan/.config/git/ignore

gitクライアントで除外されるか確認する

macOS + SourceTree な私は command + r です。

.gitignore_global とか使うんじゃないよ勢が存在する

% git config core.excludesFile
takepan/.gitignore_global

オーマイガー。バッドプラクティスと言われているサムシングを体現していた。

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?