-
Notifications
You must be signed in to change notification settings - Fork 85
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
Update bson gitignore #128
Conversation
# pyenv | ||
# For a library or package, you might want to ignore these files since the code is | ||
# intended to run in multiple environments; otherwise, check them in: | ||
.python-version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can add the .python-version
to the gitignore, yes.
But I don't think we need to add that many things to the .gitignore
, only add when things are needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which would you like to keep here definitely? I think I can remove other project management packages, but what else?
# Django stuff: | ||
*.log |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to keep or not?
@@ -8,7 +8,6 @@ __pycache__/ | |||
|
|||
# Distribution / packaging | |||
.Python | |||
env/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Moved down to the "Environment" section.
# mkdocs documentation | ||
/site |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making it stay or go?
e276a64
to
dc426ae
Compare
Rebased. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As I said before, I prefer to have files added to the .gitignore
when needed.
Template: https://github.com/github/gitignore/blob/main/Python.gitignore
Partially covers: #126 - extracting only the
.gitignore
file updatesPartially addresses: #127