Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bpo-37936: Avoid ignoring files that we actually do track. #15451

Merged
merged 1 commit into from
Sep 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ Include/pydtrace_probes.h
Lib/distutils/command/*.pdb
Lib/lib2to3/*.pickle
Lib/test/data/*
Makefile
!Lib/test/data/README
/Makefile
Makefile.pre
Misc/python.pc
Misc/python-embed.pc
Misc/python-config.sh
Modules/Setup
Modules/Setup.config
Modules/Setup.local
Modules/config.c
Expand Down Expand Up @@ -79,6 +79,7 @@ config.log
config.status
config.status.lineno
core
!Tools/msi/core/
db_home
.hg/
.idea/
Expand All @@ -89,7 +90,7 @@ libpython*.dylib
libpython*.dll
platform
pybuilddir.txt
pyconfig.h
/pyconfig.h
python-config
python-config.py
python.bat
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
The :file:`.gitignore` file no longer applies to any files that are in fact
tracked in the Git repository. Patch by Greg Price.