Skip to content
maxolasersquad edited this page Sep 14, 2010 · 3 revisions

Discussion about what to include/exclude in .gitignore

To include permanently:

  • /pos/is4c/ini/ini.php

Other possibilities:

  • *.pyc
  • *~

*.pyc

I think this should be included in the .gitignore file, since importing any Python modules contained in the source tree will byte-compile them into their .pyc equivalents. Such an import occurs whenever you run a Python installer script (i.e. install_lane.py or install_server.py); these scripts aren’t compiled but the shared installers.py is. — Lance

Lance, I agree with adding the your list of other possibilities into the .gitignore. – maxolasersquad

Clone this wiki locally