You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
pyc files represent compiled versions of .py files in your repository. They're not useful to keep in source control. I see you've ignored some, you'll want to tell git to ignore all of them by creating a .gitignore file in the root of your project and adding a line that reads
*.pyc
Similarly, ignore files that are specific to your environment:
.project .pydevproject
The text was updated successfully, but these errors were encountered:
pyc
files represent compiled versions of .py files in your repository. They're not useful to keep in source control. I see you've ignored some, you'll want to tell git to ignore all of them by creating a.gitignore
file in the root of your project and adding a line that readsSimilarly, ignore files that are specific to your environment:
.project
.pydevproject
The text was updated successfully, but these errors were encountered: