Comment on Show HN: make git ignore certain changed files in repoComments−waffle_ss14yThese are the aliases I have set in my .gitconfig for a similar (same?) purpose: [alias] ignore = !git update-index --assume-unchanged unignore = !git update-index --no-assume-unchanged ignored = !git ls-files -v | grep "^[[:lower:]]" Usage: `git ignore foo.rb`, `git unignore foo.rb`; `git ignored` to list all currently ignored files.−falseOP14yAwesome, that'll do as well, thanks
Comments
These are the aliases I have set in my .gitconfig for a similar (same?) purpose:
Usage: `git ignore foo.rb`, `git unignore foo.rb`; `git ignored` to list all currently ignored files.Awesome, that'll do as well, thanks