LoginSignup
25
27

More than 5 years have passed since last update.

プロジェクトで除外するファイルとローカルで除外するファイルの使い分け

Last updated at Posted at 2012-11-30

プロジェクトで除外

.gitignore に記述する

ローカル環境で除外

.git/info/exclude に記述する。

# 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]
# *~
target

または

$ git config --global core.excludesfile target

に書く。

25
27
1

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
25
27