개발/Unity
문제해결) 패키지 Error when executing git command. git: 'credential-winstore' is not a git command. See 'git --help'. fatal: could not read Username for 'https://gitlab.com': terminal prompts disabled
테샤르
2024. 11. 6. 21:23
Error when executing git command. git: 'credential-winstore' is not a git command. See 'git --help'. fatal: could not read Username for 'https://gitlab.com': terminal prompts disabled
Unity Package를 가져오는 과정에서 갑자기 'terminal prompts disabled'
오류와 함께 받아지지 못하는 현상이 생겼다.
반응형
나는 GitLab에서 2FA 형태로 로그인을 하고 있었는데
기존에는 잘 되다가 갑자기 이번에 되지 않았다.
인증 방식이 여러가지가 있는데 Https 방식과 SSH 형식을 자동으로 변환해주는 명령어로 해결했다.
< 해결방법 >
Git Bash에 해당 명령어를 입력한다.
Git 명령어 |
git config --global --add url."git@gitlab.com:".insteadOf "https://gitlab.com/" |
해당 명령어 이후에 다시 실행하면 정상적으로 동작하는것을 확인할 수 있다.
'terminal prompts disabled' error for GitHub private repo : [링크]
go get results in 'terminal prompts disabled' error for GitHub private repo
I created the private repo examplesite/myprivaterepo using the GitHub UI from my browser. Then I went to my go directory (on the desktop) and cloned it: $ cd $GOPATH $ go get github.com/examplesite/
stackoverflow.com
★☆☆
반응형