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

前端 未结 25 2071
爱一瞬间的悲伤
爱一瞬间的悲伤 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:12

    Switching remote URLs

    Open Terminal.

    Ist Step:- Change the current working directory to your local project.

    2nd Step:- List your existing remotes in order to get the name of the remote you want to change.

    git remote -v

    origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
    
    origin  https://github.com/USERNAME/REPOSITORY.git (push)
    

    Change your remote's URL from HTTPS to SSH with the git remote set-url command.

    3rd Step:- git remote set-url origin git@github.com:USERNAME/REPOSITORY.git

    4th Step:- Now Verify that the remote URL has changed.

    git remote -v Verify new remote URL

    origin  git@github.com:USERNAME/REPOSITORY.git (fetch)
    origin  git@github.com:USERNAME/REPOSITORY.git (push)
    

提交回复
热议问题