배운 것/git (3) 썸네일형 리스트형 remote: Permission to 에러 윈도우 제어판 > 자격증명관리자 > github 계정을 push에 쓸 github username으로 변경 https://recoveryman.tistory.com/392 git 명령어 정리 git 초기 설정 1. 해당 폴더로 가서 깃 초기화 git init 2. 수정 및 추가한 파일 깃에 올리기 git add . 3. 레파지토리 등록 git remote add origin https://github.com/ksy8230/gulp.git 반드시 작업 전에 .gitignore 파일 작성해서 큰 용량은 제외할 것 git 내려받기 git clone https://github.com/ksy8230/xxxxx.git [git] github 기존 저장소 변경 https://mollang.herokuapp.com/ React App mollang.herokuapp.com 위 링크에 연동되어 있는 git 저장소 명칭을 바꾸고 싶다. 기존 저장소는 https://github.com/ksy8230/aaa 바꾸고 싶은 저장소 https://github.com/ksy8230/bbb (1) cmd 창에서 해당 프로젝트 로컬 경로로 이동한다. (git remote -v 라는 명령어로 현재 (바뀌기 전) 기존 저장소 명을 체크할 수 있다) (2) git remote set-url 명령어를 사용하여 저장소 url 변경 (ex git remote set-url origin https://github.com/ksy8230/bbb) 이전 1 다음