git (2) 썸네일형 리스트형 [Git] 다른 사람의 pr을 로컬에서 확인하는 법, pull request 가져오기 코드리뷰를 하다보면 다른 사람의 pull request를 로컬로 가져와 실행해볼 때가 있다. 다른 사람의 pr을 로컬에서 확인하려면 아래처럼 실행하면 된다. $ git clone ${ 저장소 주소 } $ cd ${ 저장소 이름 } $ git config --add remote.origin.fetch "+refs/pull/*/head:refs/remotes/origin/pr/*" $ git fetch origin $ git checkout -t origin/pr/${ 가져오고 싶은 pr 번호 } 예시 ) js-calculator라는 저장소의 pr 7번을 가져오기 $ git clone https://github.com/hyewon3938/js-calculator.git $ cd js-calculator $ .. [Git] 소스트리 fatal : Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 에러 해결 방법 평화롭게 코딩을 시작하던 어느 날 또다시 마주친 에러 화면... fatal : Could not read from remote repository Please make sure you have the correct access rights and the repository exists. 갑자기 저장소를 읽을 수 없다며 저장소가 존재하고 있는지 확인해달라고 한다 에러의 원인 불현듯 스쳐 지나가는 지난날의 나의 소스트리 에러 joyful-development.tistory.com/5 [Git] 소스트리 permission denied 에러(Invalid username or password 와 permission denied,fatal: unable to access,The reque 멀쩡하게 소스트리를 잘.. 이전 1 다음