목록개발 (2)
develope_kkyu
1. 필수 파일 설치 nodejs.org 다운로드 설치 시 주의 사항 git bash에서 확인 node -v hexo 설치 npm install -g hexo-cli 2. 블로그 생성 적당한 폴더 생성(차례대로 실행) $ mkdir myblog $ cd myblog 블로그 파일명 생성(차례대로 실행) $ hexo init myblog $ cd myblog .github.io 생성 npm 설치 $ npm install $ npm install hexo-server --save $ npm install hexo-deployer-git --save _config.yml 파일 설정 사이트 정보 수정 블로그 URL 정보 설정 깃허브 연동 2. 깃허브에 배포 차례대로 실행 후 http://localhost:4000..
다운로드 Git : https://git-scm.com/downloads visual studio code 설치 후 Repositories에서 프로젝트 생성 코드 링크 복사 후 바탕 화면 마우스 우 클릭 Git Bash Here 클릭 git clone Shift+”insert” 입력 바탕 화면에 생성된 프로젝트 우 클릭 후 Git Bash Here 클릭 code . 입력 .gitignore에 gitignore.io에서 가져온 내용 뒷 부분에 복사 New Terminal 클릭 git bash 추가 TERMINAL에 $ git commit -m "updated” 입력 에러 확인 후 git config --global user.email "xmcmrb@naver.com" 입력 git config --globa..