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で「.DS_Store」を無視する設定を行う

Last updated at Posted at 2023-02-26

Gitの操作時に出てくる.DS_Storeが出てこないようにする方法です。

1. ホームディレクトリに移動
私のMacBookの場合、/Users/meになります。

2. 以下のコマンドを実行

$ mkdir -p ~/.config/git

3. 以下のコマンドを実行

echo '.DS_Store' >> ~/.config/git/ignore

4. 以下のようになっていればOKです。

追記
誤りがあったので修正します。現在調査中です。

これで、git statusgit addしたときに出てくるmodified: .DS_Storeがなくなります。

参考サイト

すべてのリポジトリで .DS_Store を gitignore する方法

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?