[Github Blog] 블로그 생성 시 에러 모음
Github.io Blog Errors
error : The process '/opt/hostedtoolcache/Ruby/3.1.2/x64/bin/bundle' failed with exit code 16
- bundle lock –add-platform x86_64-linux <터미널에 입력
error : --- layout: home # Index page ---
(깃허브 페이지 Actions)
- .github/workflows 폴더 -> pages-deploy.yml파일 열기 -> branches에서 자기가 사용하는 브랜치로 변경
- 그래도 안되면 github -> repo -> setting -> pages -> source에서 GithubActions로 변경
error : Process completed with exit code 1.
- 코드 1개가 잘못되었다는 뜻이다. 직전에 commit했던 파일을 다시 수정해보자. 저 에러 위에 약간의 설명이 나와있을텐데 그것을 수정하면 된다.
error : keychain errors
- terminal에 $git config –global credential.helper osxkeychain 입력
- 그래도 안되면 깃허브 -> settings -> developer settings -> Personal Access Token -> Token(Classic) 발급
- $git config –global user.password ghp_abcabcabcabc (발급받은 토큰 입력)
- $git config –list 입력 후 제대로 입력 되었는지 확인.
ERROR: Invalid first code point of tag name U+BC1C.
- 포스트.md파일에 <html 문법이 아닌 이런 한글 입력값>이 있으면 에러가 나온다.
1 | Error: The process '/opt/hostedtoolcache/Ruby/3.2.0/x64/bin/bundle' failed with exit code 5 |
- 이와 같은 메시지가 출력 된다면 ruby의 버전에 오류가 생겼을 확률이 높다.
.pages-delpy.yml
에서 ruby버전을 3.1.2로 수정하니 해결되었다.
[Github Blog] 블로그 생성 시 에러 모음
http://inhwancho.github.io/2022/11/19/Error_fix/2022-11-19-bloging_errors/