개발(Web)/VCS

[Git/GitHub] GitHub Pages 404 Error

shinyelee 2022. 9. 22. 19:56

[깃/깃허브] 깃허브 페이지 404 에러

문제

깃허브 페이지가 안 뜬다.


해결방법 (1) 주소 뒤에 index.html 붙이기

index.html을 붙여도 마찬가지다.

해결 방법 (2) 빈 커밋 이용하기

// 터미널에 아래와 같이 입력(--allow-empty는 빈 커밋을 의미함)
git commit --allow-empty -m "대충 적어넣고 싶은 메시지"
git push

터미널에서 이렇게 입력한 후 깃허브 페이지를 새로고침하면
잘 뜬다!


참고

https://stackoverflow.com/questions/11577147/how-to-fix-http-404-on-github-pages/45907768#45907768

 

How to fix HTTP 404 on Github Pages?

Here is my GitHub repository on the gh-pages branch. Everything looks good, I have my index.html, my CSS, JS and pictures folders. But when I access http://roine.github.com/p1 I get HTTP 404 not f...

stackoverflow.com

반응형