Hi, I am using Github for my web app on Pythonanywhere and things were going well. I used to do a git pull from www locally and make my big changes, test them locally, and then (after making sure that www is up-to-date with git repo) I pushed my local code to www.
Recently I faced sth like this: Git - fatal: Unable to create '/path/my_project/.git/index.lock': File exists
so I did this: rm -f ./.git/index.lock
and continued using Git and it worked.
Now the problem is when I do a git pull locally from www (Pythonanywhere hosted web app), it seems to work but I can't see the same beautiful website locally. My CSS, Static, Media, Bootstrap etc. seem unlinked and what I see (locally) is just an ugly HTML website. I don't know if I'm missing anything or if my approach is correct!.
Any help is appreciated. Thank you