LoginSignup
2
1

More than 3 years have passed since last update.

[超よく見るやつ] Gitで自分の環境だけ無視するファイルを追加してコミットしないやつ

Posted at

背景

あんまり使わないけど覚えておかないと面倒になるやつ。
調べるのもだるいので覚書しておく。

.gitignore じゃあない。

あ、Windows環境やで

notepad .git/info/exclude

したら .gitignore とおんなじ感じで無視したいファイルを追加する

# git ls-files --others --exclude-from=.git/info/exclude
# Lines that start with '#' are comments.
# For a project mostly in C, the following would be a good set of
# exclude patterns (uncomment them if you want to use them):
# *.[oa]
# *~

# ここらへんにてきとうに

Gitのアレを更新する

あれだよ…ホラ…アレ…

git update-index --assume-unchanged <FILE_PATH>

おっけ、消えた。

2
1
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
2
1