http://stackoverflow.com/questions/2432764/how-to-change-a-remote-repository-uri-using-git
You can
git remote set-url origin git://new.url.here
(see git help remote
) or you can just edit .git/config
and change the URLs there. You're not in any danger of losing history unless you do something very silly (and if you're worried, just make a copy of your repo, since your repo is your history.)
'Programming' 카테고리의 다른 글
이클립스 Node.js 연동하기 (Eclipse Node.js) (0) | 2013.03.01 |
---|---|
(C++) deprecated conversion from string constant to 'char*' (0) | 2013.03.01 |
(Book) Let Over Lambda—50 Years of Lisp by Doug Hoyte (0) | 2013.02.27 |
Makefile tutorial (0) | 2013.02.26 |
How to use EOF to run through a text file in C? (0) | 2013.02.26 |