美文网首页
git 修改url Repository Not Found

git 修改url Repository Not Found

作者: 瓦大西精神小伙丶澎 | 来源:发表于2020-12-25 11:27 被阅读0次

1.删除指定的远程仓库连接

 git remote remove origin

2.添加修改后的仓库地址

 git remote add origin    <你的项目地址ssh/https> 

3.拉去分支,合并分支

git pull origin master

4.提交分支

git push origin master

相关文章

  • git 修改url Repository Not Found

    1.删除指定的远程仓库连接 2.添加修改后的仓库地址 3.拉去分支,合并分支 4.提交分支

  • git 常用命令

    克隆仓库 git clone repository url 拉取代码 git pull 添加文件: >>> git...

  • git- Repository not found

    把本地库的内容推送到远程库出现错误:ERROR: Repository not found.fatal: Coul...

  • 一些问题

    1. git clone url 和 git pull的区别 git clone是将repository整个下载...

  • git commands

    1. To see the URL of local repository git remote show ori...

  • 常用git整理

    约定 : repository_url: git项目地址 e.g.: https://XXX/test.git[h...

  • git问题ERROR: Repository not found

    git有时候会报这样的问题 在github上重新配置githun库与本地连接的公钥 1.复制本地公钥 2.打开gi...

  • Mac git错误Repository not found

    此问题多半是因为账户权限等问题造成,可以考虑删除已有的git账号,从新输入账号密码解决。单机桌面 左上角前往 输入...

  • git pull Repository not found.

    解决办法如下图。 原理是清除记住的密码,重新输入密码。但是not found给人的错觉就是仓库不存在,真是莫名其妙...

  • git 简单命令

    一、拉取远程repository [git clone xxx_url]拉取xxx_url远程地址的reposit...

网友评论

      本文标题:git 修改url Repository Not Found

      本文链接:https://www.haomeiwen.com/subject/ksmbnktx.html