Firefly Pointer 'Git' 카테고리의 글 목록 — 궁금하신 점이 있다면 댓글로 남겨주세요.(2023년~ 노션으로 이동)

Git

    [git] 403에러 : remote: Permission to ... fatal: unable to access

    [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/ ... " 에러

    [에러로그] unable to access 'https://github.com/ ... " 에러

    에러로그 unable to access 'https://github.com ... 원인 해당 Github와의 연결 문제 상황별 해결방법 1. 인터넷이 잘 연결되어있는지 확인하기(특히 Wifi환경에서 사용하는 경우) 2. 해당 GitHub 리포지토리과 정상적으로 연결이 되어있는지 확인하기(특히 새로운 PC환경에서 사용하는 경우)

    [Git] PR 리뷰 팀원 제한 걸기

    보호되어 있는 글입니다.

    [Git] Git 워크플로우 명령어

    [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..