-
Notifications
You must be signed in to change notification settings - Fork 17
.gitignore
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
- *~
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
orinstall_server.py
); these scripts aren’t compiled but the sharedinstallers.py
is. — Lance
Lance, I agree with adding the your list of other possibilities into the .gitignore. – maxolasersquad