How to change the URI (URL) for a remote Git repository?

前端 未结 25 2487
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-22 00:28

I have a repo (origin) on a USB key that I cloned on my hard drive (local). I moved \"origin\" to a NAS and successfully tested cloning it from here.

I would like to

25条回答
  •  不要未来只要你来
    2020-11-22 01:06

    You can

    git remote set-url origin new.git.url/here
    

    (see git help remote) or you can 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.)

提交回复
热议问题