gitのローカル環境で自分のファイルだけを無視(.gitignore)する方法。

(プロジェクトのパス)/.git/info/exlude  

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

#**************************************  my ignore settings
.gitignore
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db

gulpfile.js
package.json
package-lock.json
node_modules/
bower.json
bower_components/
.idea