0

I wan't to ignore every IPython Notebook found on my project so I put *.ipynb in .gitignore.

However, I would like to commit some specific *.ipynb files that will accompany a release (master branch). If possible, I would like git not to continue tracking those files after the commit, but I wouldn't mind if it does.

Felipe Aguirre
  • 218
  • 1
  • 12

1 Answers1

0

I think you are talking about this: Make .gitignore ignore everything except a few files

In summary, using the prefix ! in the gitignore file.

Community
  • 1
  • 1