[Github] Tistory와 Github 연동하기
·
IT/Github
티스토리 깃헙 연동하기티스토리에 글을 쓸때 깃헙에 잔디를 심기위해 연동했다.1. Tistory RSS 설정우선 Tistory RSS를 설정해준다.설정해주는 방법은Tistory 관리자 > 관리 > 블로그 > 기타 설정 항목으로 들어가서아래와 같이 해주면 된다.제대로 됐는지 확인하려면https://leejaehoon.tistory.com/rss와 같이자기주소 뒤에 /rss를 넣어서 아래와 같이 접속이 된다면 성공.2. 로컬파일 만들기2-1 이제 로컬에 원하는 폴더에 아래 코드를 순서대로 입력한다.npm init -ynpm i rss-parser2-2 만들어진 package.json을 아래와 같이 작성한다.{ "name": "tistory_github", "version": "1.0.0", "descri..
[github]error: origin 리모트가 이미 있습니다.
·
IT/Github
해결방법 (명령어 입력) git remote rm origin입력 후 다시 git remote add origin https://github.com/EZPill/EZPill_main.git origin remote를 삭제하고 다시 더하면 오류해결 깃허브 레포지에 있는 명령어로 보면 git init git add . git commit -m "first commit" git branch -M main git remote rm origin git remote add origin https://github.com/EZPill/EZPill_main.git git push -u origin main