Git (3) 썸네일형 리스트형 GitHub 에서 패키지 Release 하는 법 우측 Create a new release 버튼 클릭 Choose a tag 에서 버전 입력 Target 에서 Recent Commit 선택, Title 에 버전 입력 우측 상단에 Generate release notes 클릭~ 그리고 publish github page 활용 npm install gh-pages --save-dev package.json에 추가 "private": true, "homepage": "https://{깃허브 유저 이름}.github.io/{저장소 이름}/", "scripts": { "start": "react-scripts start", "build": "react-scripts build", "deploy": "gh-pages -d build", npm run build npm run deploy 위 홈페이지 url 사용해도 되고 github 에 branch 중 gh-pages > settings > page 에 주소 있음 무료 호스팅 좋아요~ Git User 확인 및 SSH 설정 터미널에서 user 확인 및 변경 git config --global user.name "John Doe" git config --global user.email johndoe@example.com git config --list SSH 생성 ssh-keygen -t rsa -b 4096 -C "yourEmail@example.com" id_rsa.pub 파일이 공개키 이며 여기에 등록 이전 1 다음