Develop/오류 해결 (Resolve errors) 11

[Python/VScode] IntegrityError: UNIQUE constraint failed: auth_user.username

https://coding-dahee.tistory.com/61 이거하다가... IntegrityError 다른 아이디로 회원가입 시도하니 되었다,,,그것에 대한 에러처리를 안해줘서 그런가보다 내 admin 아이디가 deg9810인데회원가입 역시 deg9810으로 해서 그런가보다db에 이미 관리자인 deg9810이 있어서 애초에 처음부터 에러가 난 것 같다

[Git] git add . 시 CRLF 오류날 때

warning: LF will be replaced by CRLF. 이런 오류가 났다... VS CODE로 wordcount (week2폴더) github에 올리려 했었음그래서 그냥 다른 프로젝트 올려보기로 했다. 그래서 그냥 git add . 했더니 됐다. 근데 만약 꼭 그 프로젝트를 해야한다면.../? https://stackoverflow.com/questions/17628305/windows-git-warning-lf-will-be-replaced-by-crlf-is-that-warning-tail-backwar/17628353 git config --global core.autocrlf falsegit config --global core.autocrlf truegit config --globa..