GitHub pages are not updating

后端 未结 30 2525
[愿得一人]
[愿得一人] 2020-12-04 15:22

I\'m running into a weird issue with GitHub pages. I pushed a new commit to my personal pages page maltzj.github.io, but the new article isn\'t showing up there. When I exec

30条回答
  •  难免孤独
    2020-12-04 15:45

    In my case, my problem was after git push my GitHub file was updating but not showing my website on GitHub pages.

    Note: I was creating Website by React

    Also, on the HTML project, I faced the same problem. In that case, I just did first of all git pull and then git status | git add . | git commit -m"adding some content" | and git push. It worked for me.

    But in the React project, it didn't work. I run this again on my cmd npm run deploy then my React web application is showing on GitHub pages.

    My suggestion is to try everything showing on this post comments. Because the solution to this problem is not one.

提交回复
热议问题