赞
踩
在git上新建项目
然后讲本地原来的git clone地址更换成新建仓库的clone 地址
方法一:
1、删除本地仓库当前关联的无效远程地址,再为本地仓库添加新的远程仓库地址
git remote -v //查看git对应的远程仓库地址
git remote rm origin //删除关联对应的远程仓库地址
git remote -v //查看是否删除成功,如果没有任何返回结果,表示OK
git remote add origin https://github.com/***.git //重新关联git远程仓库地址
方法二:
2、直接修改本地仓库所关联的远程仓库的地址
git remote //查看远程仓库名称:origin
git remote get-url origin //查看远程仓库地址
git remote set-url origin https://github.com/***.git ( 如果未设置ssh-key,此处仓库地址为 http://... 开头)
方法三:
3、修改 .git 配置文件
并没用用到网上的那种方法
cd .git //进入.git目录
vim config //修改config配置文件,快速找到remote "origin"下面的url并替换即可实现快速关联和修改
我是直接找到自己盘中的
简单粗暴直接修改
最后将本地代码上传至git中
git add .
git commit -m "create"
git push -u origin master
git修改用户名邮箱地址
git config --global --replace-all user.name "要修改的用户名"
git config --global --replace-all user.email"要修改的邮箱"
git config --global --replace-all user.password "要修改的密码"
// 查看修改完后的用户名:
git config user.name
git config user.name "name" // 设置
// 查看修改完后的邮箱:
git config user.email
git config user.email "email" // 设置
// 查看修改完后的密码:
git config user.password
git config user.password "password" // 设置
//或者
git config --global --list //查看用户名、邮箱、密码、远程仓库地址等内容
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。