Git 4

Git Github 깃헙 브랜치 설정 + 깃배쉬로 repository 클론 내려받기

깃헙 브랜치에 업로드된 파일을 다운받기 위해 깃배쉬로 폴더 열기 git init 브랜치를 가져올 작업폴더 선언 git remote add origin URL 작업폴더에 원격저장소 추가 git remote -v 작업폴더에 원격저장소가 올바르게 추가되었는지 확인 연결된 원격저장소가 출력됨 git branch -r git branch git branch -a 원격저장소의 브랜치를 가지고 왔는지 확인 -> 결과가 뜨지 않아야 정상 git remote update 작업폴더에 원격저장소 업데이트 -> 이 때 브랜치를 가져오게 된다 branch -r 다시 원격저장소를 작업폴더로 잘 가져왔는지 확인 -> 이 때 remote update를 통해 가져온 브랜치를 출력 git checkout 브랜치이름 작업폴더에서 사용할 ..

Git 2023.07.25

Github 깃헙 git bash 깃배쉬 remote: repository not found 해결 방법

오늘도 신나는 깃헙 이건 생각보다 자주 생기는 일이라서 드디어 기록 여러 레포지토리와 브랜치를 돌아가면서 사용하다 보니 작업폴더에 원격저장소가 추가되지 않는 경우가 발생 git remote add origin URL 코드 입력 시 작업폴더에 원격저장소가 추가되어야 하는데 이미 존재한다는 코멘트가 나온다 원격저장소가 이미 존재해서 그대로 작업이 되면 상관 없는데 작업폴더에 원격저장소를 업데이트 하는 코드를 입력했을 때 오류가 출력됨 git remote update git remote update로 작업폴더에 원격저장소를 업데이트해 브랜치를 가져와야 하는데 레포지토리를 찾을 수 없다고 함 remote: Repository not found. fatal: repository 'https://github.com..

Git 2023.07.21

GitHub 에러 File exists, Another git process seems to be running in this repository.

허구한날 에러를 선사하는 GitHub입니다 (그래도 사랑해...) FIle exists / Another git process running... Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue. 오늘의 오류는 File exists 파일이 존재하고 Another gi..

Git 2023.03.27

GITHub 깃헙시작하기 개발자로서의 첫걸음 Git Bash로 관리하는 방법

GitHub을 시작했다고 했더니 현직자 친구로부터 이제 진정한 개발자로서의 첫걸음이라고 농담을 하더라구요 https://git-scm.com/download/win Git - Downloading Package Download for Windows Click here to download the latest (2.39.2) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 10 days ago, on 2023-02-14. Other Git for Windows downloads Standalone Installer 32-bit Git for Win git-scm.com https://git..

Git 2023.03.25