[GIT] git remote url 변경하기
상황 회사에서 SSH Key와 계정명을 변경할 일이 생겨서 변경. git fetch가 안 되어서 좀 찾아보게 되었다. fatal: protocol error: bad line length character: 해당 에러가 나면서 fetch가 안 되는 상황인데 remote url에 계정명이 포함되서 그런 것으로 보인다. 이 세팅은 clone 과정에서 세팅되는 것으로 보인다. username@machinename:/usr/git/repos 이런 느낌으로 원격 주소가 잡혀있다. 원격 주소를 보는 명령어 $ git remote -v $ oldName@machinename..변경을 할려면 $ git remote set-url origin **newname**@machinename..
2017.07.10