Programming/Programming
[ SourceTree ] 소스트리에서 feature 기능마무리시 sourcetree Fatal: Could not fetch
brocess
2020. 4. 29. 19:42
반응형
보통 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'를 볼 수 있다.
그리고 다시 터미널 종료하고 깃플로우의 기능 마무리 작업을 하면 정상적으로 처리 되는 것을 볼 수 있다~!
감사합니다~
반응형