git push 할때 자꾸 username, password 물을때 해결방법
평소에는 InteliJ를 이용해서 git push를 해서, git을 사용할때 인증을 할 필요가 없습니다. 하지만, 터미널에서 git push를 할때마다 username과 password를 입력해야 해서 번거로울때가 있습니다. 왜 자꾸 로그인 정보를 물어보나 찾아보았습니다. git push Username for 'https://github.com': powerku Password for 'https://powerku@github.com': 원인 제가 git clone 할때 HTTPS 방식으로 git clone을 해서 터미널에서 git push를 할 때 로그인 정보를 묻는 것이였습니다. 해결방법 git remote set-url origin "YOUR_GIT_URL" SSH 방식으로 git clone를 하..