banner image

github 3

[Github] private 레포지토리 clone 에러 - remote: Repository not found

에러 상황git clone {레포지토리 URL} github에서 운영중인 private 레포지토리 코드를 clone 받으려는 상황. 아래와 같은 에러 발생 Cloning into '{레포지토리명}'...remote: Repository not found.fatal: repository '{레포지토리 URL}' not found 에러 코드를 읽어보면 해당 레포지토리를 찾지 못한다는 내용입니다. 하지만 보통 이런 경우 레포지토리 URL이 잘못된 경우는 많지 않습니다. 다른 이유가 더 일반적입니다. 그 이유는 바로 해당 레포지토리가 private이기 때문에 접근 권한이 없어 발생하는 에러입니다. 해결 방법1. Github 퍼스널 토큰 발급github 퍼스널 토근을 발급하기 위해서는 github 접속 시 우측 ..

카테고리 없음 2025.05.10

[Github] Git 기본 용어 및 명령어 모음

용어기본용어설명Repository프로젝트의 코드와 변경 이력을 저장하는 공간Working Directory실제로 파일을 수정하는 공간 (내 컴퓨터의 현재 프로젝트 상태)Staging Areagit add로 커밋하기 전에 변경 사항을 저장하는 공간Commit특정 시점의 변경 사항을 저장하는 것 (git commit -m "메시지")Branch독립적으로 작업할 수 있는 코드의 분기 (main, develop, feature/xxx 등)Merge다른 브랜치의 변경 사항을 현재 브랜치로 합치는 작업Rebase브랜치의 시작점을 다른 브랜치의 최신 커밋으로 변경하여 깔끔한 히스토리 유지Remote RepositoryGitHub, GitLab, Bitbucket 같은 서버에 저장된 레포지토리Local Reposito..

데브옵스/CI,CD 2025.02.18

[GitHub] private 레퍼지토리 clone 하기

ubuntu@ip-xxx-xx-xx-xx:~$ git clone https://github.com/SHINDongHyeo/app.gitCloning into 'app'...Username for 'https://github.com': 내 깃허브 유저이름 입력Password for 'https://SHINDongHyeo@github.com': 내 깃허브 비밀번호 입력remote: Support for password authentication was removed on August 13, 2021.remote: Please see https://docs.github.com/get-started/getting-started-with-git/about-remote-repositories#cloning-with..

데브옵스/CI,CD 2024.12.31