본문 바로가기

프로그래밍/Github

(3)
[Github] The requested URL returned error: 403 $ git push -u origin main 명령어 실시로 커밋을 하려고 했더니remote: Permission to {repository 이름} denied to {username}fatal: unable to access '{repository 주소}' The requested URL returned error: 403 위와 같은 오류가 떴다.   실제로 해결한 방법 제어판 -> 사용자 계정 사용자 계정 -> 자격 증명 관리자-> 일반 자격 증명 여기서 깃허브 계정 삭제하고 다시 로그인 하면서편집기에서 커밋 다시 시도해보기 했더니 인텔리제이와 깃허브 연동에 성공했다
[깃허브] 브랜치 설정 및 push 깃허브에서 레파지토리에 대한 readme 파일을 추가했을 때 종종 충돌이 일어난다 hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. If you want to integrate the remote changes, hint: use 'git pull' before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.  위와 같은 오류 발생 git init 브랜치 변경하기 ex. master -> main으로 변경git branch -m main 해결방법1. +를..
[깃허브] 인텔리제이를 통해 깃허브 커밋(Commit)하는 방법 인텔리제이에서 다른 깃허브 소스 코드 다운 받아서 사용하는 방법  파일 > 새로 만들기 > 버전 관리에 있는 프로젝트 url에 clone하려는 깃허브 저장소의 url 복사해 붙여넣기  수정한 코드 나의 저장소에 업로드 하는 방법터미널 시행 후 다음과 같은 명령어들 입력하기(ctrl + ` ) git config --global user.email "이메일 적기"접속할 깃허브 이메일 적기 프로젝트에 대한 repsitory(저장소) 미리 만들고 url 복사하기 git remote add myrepo https://github.com/yourusername/my-forked-repo.git만들어둔 저장소 url 붙여넣고 myrepo로 설정해주기 git add .변경한 모든 사항들 커밋 대상에 추가하기 git ..