Git
![[git] 403에러 : remote: Permission to ... fatal: unable to access](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FrTPHu%2FbtsG4yPnZf8%2FmZtSRZ0C6QaH8VCvwtHNtK%2Fimg.png)
[git] 403에러 : remote: Permission to ... fatal: unable to access
에러코드remote: Permission to {나의 git Repository} denied to {내 계정}.fatal: unable to access 'https://github.com/{나의 git Repository}': The requested URL returned error: 403 상황: 작업 내역을 git push 하려니 발생 원인: 내 로컬 PC에 저장된 git 인증 설정이 만료되거나 바뀌어서 발생 해결방법1. [Windows 11 기준] 제어판 > 사용자 계정 > windows 자격 증명 관리 > git:https://github.com 토글 열기 > 제거2. 다시 push 해보면 github Sign in 필요 > Sign in 진행 (이때, 브라우저에 흰 창만 뜨는 경우 정상적으..
![[에러로그] unable to access 'https://github.com/ ... " 에러](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FnNt2V%2FbtslboUSDSr%2FkAkA7Uc6yiplKauCeNUCL1%2Fimg.png)
[에러로그] unable to access 'https://github.com/ ... " 에러
에러로그 unable to access 'https://github.com ... 원인 해당 Github와의 연결 문제 상황별 해결방법 1. 인터넷이 잘 연결되어있는지 확인하기(특히 Wifi환경에서 사용하는 경우) 2. 해당 GitHub 리포지토리과 정상적으로 연결이 되어있는지 확인하기(특히 새로운 PC환경에서 사용하는 경우)
![[Git] Git 워크플로우 명령어](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FBmGn1%2FbtrWDFyBjvB%2FN9EYrDxjsfLwVypmsbmSqk%2Fimg.png)
[Git] Git 워크플로우 명령어
Git 플로우 1. 최초 작업 시 [ Github 프로젝트에 올린 기능추가용 Issue번호가 #40번 일 때로 가정 = Feat/#40_1 ] 1. Git 설정 $ git config --global user.name "이름 성" $ git config --global user.email "이메일" 2. 팀 (혹은 개인) 레포지토리 Clone $ git clone origin main 레포지토리에서_복사한_URL_경로 $ git pull origin main $ git switch -c Feat/#40_1 $ git push origin Feat/#40_1 특정 원격 브랜치를 클론받는 방법 git clone -b {branch_name} --single-branch {저장소 URL} ex) git clo..