Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 339 Bytes

File metadata and controls

14 lines (8 loc) · 339 Bytes

Ignore local files

  • put needed files into .gitignore
  • then git update-index --assume-unchanged .gitignore

Update:

To get undo/show dir's/files that are set to assume-unchanged run this:

git update-index --no-assume-unchanged <file>

To get a list of dir's/files that are assume-unchanged run this:

git ls-files -v|grep '^h'