개발/Android Studio 에러

에러: A problem occurred evaluating project ':app'.> Process 'command 'git'' finished with non-zero exit value 128

스몰스테핑 2024. 10. 23. 21:17

 

(Mac OS에서 작업 중 생긴 일)

안드로이드 스튜디오 실행 후, 거기서 git clone 해오는 게 아니라 github 홈페이지에서 repo를 다운로드해서 실행하니 발생한 에러이다.

 

검색결과 git과 관련된 설정이 안되어 있다는 것 같다고 한다.

 

1. git 관련 설치

터미널에서 다음 두 개를 설치한다.

brew install git
brew install git-gui

 

이후, macPorts(https://www.macports.org/install.php)도 설치하였다.

 

이 자료를 참고한 프로세스이다.

https://git-scm.com/downloads/mac

 

Git - Downloading Package

Download for macOS There are several options for installing Git on macOS. Note that any non-source distributions are provided by third parties, and may not be up to date with the latest source release. Choose one of the following options for installing Git

git-scm.com

 

이후 다시 안드로이드 스튜디오의 초기 프로젝트 리스트에서 VCS로 git clone을 하였고, 오류는 사라졌다.