I was completing “Learn Relational Databases by Building a Database of Video Game Characters” in a GitHub Codespace. I finished all the steps and CodeRoad showed the “Congratulations on completing” message inside VS Code.
When I went to commit and push my work, I accidentally clicked commit + push before realizing the remote was pointing at freeCodeCamp’s own repo (freeCodeCamp/rdb-alpha), so I got a permission denied error since I don’t have write access to that repo. I then used the fork option, which created my own fork at:
https://github.com/PanzerFaustAnan/rdb-alpha
After that, I fixed my local git remote (origin) to point at my fork instead of freeCodeCamp’s repo, and successfully pushed my completed work there (git push origin master returned “Everything up-to-date,” confirming the push went through).
However, the project still shows as not complete on the freeCodeCamp course page, even after refreshing. I also tried an empty commit (git commit --allow-empty) and re-pushing to force a re-check, but it’s still showing incomplete.
Could someone help me manually verify/mark this project as complete, or point me to what else might be missing?