如何快速关联/ 修改 Git 远程仓库地址

方法一 :  (个人首选方案) 
使用vim命令
修改 .git 配置文件
执行命令如下图:


本地 Git 仓库根目录下:cd .git ;

编辑 Git 配置文件:vim config ;

shift +  i 进入input 编辑模式 ;

修改 [remote "origin"] 下 url 的值 ;

ESC 输入 x 保存退出即可;

 

方法二 :
使用 Git 命令
直接修改本地仓库所关联的远程仓库的地址;


进入本地 Git 仓库根目录下;
键入: git remote 查看远程仓库名称:origin ; 
键入:git remote get-url origin 查看远程仓库地址;
键入:git remote set-url origin [email protected]:LauncherGroup/Launcher.git  ( 如果未设置ssh-key,此处仓库地址为 http://... 开头)
方法三 :
使用 Git 命令
先删除本地仓库当前关联的无效远程地址,
再为本地仓库添加新的远程仓库地址
进入本地 Git 仓库根目录下;
键入: git remote 查看远程仓库名称:origin ; 
键入:git remote rm origin 删除本地仓库当前关联的远程仓库;
键入:git remote add origin [email protected]:LauncherGroup/Launcher.git  ( 如果未设置ssh-key,此处仓库地址为 http://... 开头)
 

你可能感兴趣的:(java)