git config --global --list 실행시
뭔가 좀 꼬여가지고 대충 아래와 같이 나오는 상황이었는데
credential.helper 를 지우고 싶었습니다...
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
filter.lfs.required=true
credential.helper=cache
git config --global --unset credential.helper
git credential-cache exit
위 명령어는 글로벌 Git 설정에서 credential.helper 항목을 삭제하고 캐시된 인증 정보도 삭제합니다.
macOS 키체인 사용
git config --global credential.helper osxkeychain
근데 이 설정했다가 .ssh 에 뭔가 꼬였을 때 git push, pull 다 안된적이 있었습니다...
뭐가 문제였을지 더 찾아봐야겠지만 아마도 ssh 로 여러 github 아이디 사용하려다가 문제가 생겼던 것 같아요.
(현재는 .ssh 숨김폴더의 설정들 다 깨끗하게 초기화함)
'TIL' 카테고리의 다른 글
[241011 TIL] 싱글톤(Singleton) 패턴(gpt 질의) (1) | 2024.10.10 |
---|---|
[241010 TIL] Parallel, Intercepting routes 사용법(모달) (0) | 2024.10.10 |
[241006 TIL] supabase Redirect URLs (0) | 2024.10.06 |
[241005 TIL] 컴포넌트를 커스텀 훅으로 제공하기 (0) | 2024.10.05 |
[241004 TIL] supabase db 복원하기 (0) | 2024.10.04 |