26Sep/130
git ignoring changes
Ignoring files in repository:
edit .gitignore git update-index --[no-]assume-unchanged FILE # if rule was added after the tracked file
Ignoring files in all repositories on your computer:
edit ~/.gitignore_global git config --global core.excludesfile ~/.gitignore_global
Ignoring local per-repository files:
edit .git/info/exclude
Source: github help