Hello everyone - anyone ever experienced dealing with this type of issue? When I finished updating my python code, I did the ‘git push’ to update my repository on GitHub. I checked my repository manually on GitHub to see if updated. However it didnt update. That’s why I wasnt able to deploy code correctly for my live server after testing my staging-server - I still received two ‘.has-error’ statements: (I am doing TDD book - chapter 17: https://www.obeythetestinggoat.com/book/chapter_deploying_validation.html)
Your help/feedback would be so much appreciated!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Hi there @bdossul,
Do you get any errors when running
git push
?Also have you commited your changes before running the
git push
command? To check that you can run:If there are any unstaged changes you need to run:
And then commit the changes with:
After that push your changes to the remote repository:
Let me know how it goes! Regards, Bobby