I made a commit and now when I try to pull i get this error.
error: The following untracked working tree files would be overwritten by merge:
login/models.pyc
timer/__init__.pyc
timer/admin.pyc
timer/api.pyc
timer/email.pyc
timer/exceptions.pyc
timer/models.pyc
timer/serializers.pyc
timer/urls.pyc
timer/views.pyc
Please move or remove them before you can merge.
Aborting
This is how my .gitignore looks like
*.pyc
*.~
*.swp
*.xml
*.iml
I have added the pyc files in gitignore yet they are commited. What have I done wrong and how can I make a successful pull now?