I have created a Django project and now I want to pull it to my remote server.
What I did so far:
- I already pushed local project to Github.
- I have followed the whole guide https://www.digitalocean.com/community/tutorials/how-to-set-up-django-with-postgres-nginx-and-gunicorn-on-ubuntu-20-04
- My remote project has same names of files as the local one. When I try to
git pull origin master
I get this msg:
error: The following untracked working tree files would be overwritten by merge: xxxx Please move or remove them before you merge.
What should I do? I guess this occurs because the files have the same name, but it's ok. I want to pull the content from one to another.