반응형
보통 git + sourcetree로 작업을 할 때 기능별 featrue를 생성해 작업한다.
해당 작업이 완료되면 '깃 플로우'기능을 사용해 기능마무리 및 자동 develop브랜치에 머지하면서 삭제하는데 해당 작업을 할 때 다음과 같은 에러가 발생하였다.
Fatal: could not read username for 'https //github.com' device not configured
sourcetree Fatal: Could not fetch feature/#8 from origin.
해결책
소스트리에서 아래의 터미널을 클릭
터미널에서 다음 순서대로 입력한다
입력 > git config credential.helper
osxkeychain
입력 > git config credential.helper sourcetree
입력 > git config credential.helper
sourcetree
그러면 마지막으로 'sourcetree'를 볼 수 있다.
그리고 다시 터미널 종료하고 깃플로우의 기능 마무리 작업을 하면 정상적으로 처리 되는 것을 볼 수 있다~!
감사합니다~
반응형
'Programming > Programming' 카테고리의 다른 글
java method - convert string to numberStyle [자바면접질문도움] (0) | 2020.06.16 |
---|---|
MAC에서 특정 포트 서비스 죽이기 (Address already in use) (0) | 2020.05.21 |
[ nginx ] multiple access log when redirect http to https (0) | 2020.04.13 |
소프트웨어 개발자 뽑을 시 잘못된 면접 방식 (0) | 2020.02.25 |
운영체제 측면에서 Memory(메모리), Virtual Memory(가상메모리) (0) | 2020.02.19 |