Pink Transparent Star

Unity/개념 공부

[ 내일배움캠프 ] TIL.02 - GitHub Desktop Unable to locate Git 오류 메세지 발견..

채유나 2024. 4. 16. 21:45
728x90

 

Git의 Branch를 Merge 하는 중 Unable to locate package git 오류 메세지로 당황스럽고 헷갈리는 상황이 나타났다.

 

 

에러 메세지에 검색 하는 중 깃을 설치하지 않아 나타나는 메시지라는 걸 알되어 아래의 사이트에서 Git을 설치를 진행하였다.

 

Git 설치 사이트

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

 

CMD 해결 방법 이미지

 

apt-get update 도 사용해보고 CMD를 이용해서 해보고 껏다 켜보는 등 해보았지만.. 해결하지 못했다. 

 

Why?

 

아직까지 이유는 모르지만 결국엔 이전 파일을 살려서 다시 작업하는 형식으로 해결 했다..

 

하지만 이번 일을 해결하면서 cmd를 이용해서 git을 접근하는 방법에 대해 알게된 시간을 가지게 되었다.

 

Git CMD 사용했던 명령어

 

◾ cd . : 디렉토리 이전으로 이동

  D: D 드라이브로 이동

  git init : git 저장소 만들기, git 디렉토리 생성하기

  git status : git 프로젝트 폴더의 상태 확인

  git commit : stage에 올려진 파일 커밋 진행

 

  git branch : 브랜치 목록 확인

  git branch [브랜치 명] : 새로운 브랜치를 생성

  git checkout [ 브랜치 명 ] : 해당 브랜치로 전환

 

브랜치 A, B가 있는 경우

  git merge[브랜치 B] : 브랜치 A로 브랜치 B를 끌어와서 머지

 

  git push : 원격저장소로 푸쉬

  git pull : 원격 저장소의 내용을 로컬저장소로 내려받음

 

먼가 Git Desktop에 의존하기보단 터미널로 사용하는 방법에 대해 알아보는 것도 좋은 것 같다

 

참고 사이트

 

[docker] E: Unable to locate package [package_name] && docker entrypoint수정 실행

E: Unable to locate package Error docker쪽에서 새로운 패키지를 다운받으려고했는데, 자꾸 E: Unable to locate package git 에러가 떠서 이유를 찾아보니... package update가 안되어서 생긴문제같다 apt-get update 이후

jaeyung1001.tistory.com

 

 

GitHub Desktop unable to locate Git (although installed), Git Bash (although installed), or Atom (although installed)... · Issu

Description Although I can open and run GitHub Desktop, Git, Git Bash, and Atom all on their own and they work fine, GitHub Desktop is unable to locate Git, Git Bash, or Atom from within the progra...

github.com

 

728x90