memostack
article thumbnail
macos monterey 12.6 업데이트 후 git 오류 조치 방법
DevOps/MacOSX 2022. 9. 15. 22:23

오류내용 이번에 12.6으로 업데이트 후 git을 사용할 수 없게됐다. Xcode 계약/라이선스에 동의해야한다고 팝업이 뜬다. 동의 후 아래와 같이 소프트웨어 설치를 진행하는데, 설치가 완료되어도 git을 사용하려고 하면 아래 오류와 함께, git 사용이 불가능하다. 오류 상세 2022-09-15 22:15:31.448 xcodebuild[1601:16204] [MT] DVTPlugInLoading: Failed to load code for plug-in com.apple.dt.IDESimulatorAvailability (/Applications/Xcode.app/Contents/PlugIns/IDESimulatorAvailability.ideplugin), error = Error Domain=NS..

article thumbnail
Git 계정 변경, fatal: Authentication failed for
ETC 2021. 1. 19. 09:36

원인 git의 계정을 변경하여 git 명령어를 수행하게되면, 아래와 같은 에러가 발생한다. fatal: Authentication failed for 'https://~~' 해결 시스템에 등록된 credential 설정값을 초기화 시켜주면 해결된다. $ git config --system --unset credential.helper​ Username for 'https://github.com': 자신의 계정 username Password for 'https://~@github.com': 자신의 계정 password 참고. 자동 로그인 만약, 매번 로그인하는것이 귀찮다면, 아래 명령어로 로그인 정보를 저장할 수 있다. 저장을 하게되면, 저장된 계정 정보로 알아서 로그인을 수행한다. $ git confi..