首页 > 其他分享 >git切换连接方式(ssh-https)

git切换连接方式(ssh-https)

时间:2024-05-20 11:53:51浏览次数:25  
标签:git remote 链接 ssh https 远程

 

 

要将git仓库的ssh链接切换为https链接,可以按照以下步骤操作:   1. 打开终端,并进入到本地的git仓库目录中。   2. 使用以下命令查看当前git仓库的远程链接:
git remote -v
3. 使用以下命令移除当前的ssh远程链接:
git remote remove origin
4. 使用以下命令添加https远程链接:
git remote add origin https://github.com/username/repo.git
其中,`https://github.com/username/repo.git`替换为你的仓库的https链接。   5. 使用以下命令再次验证远程链接是否已经切换为https链接:
git remote -v
  现在,你的git仓库的远程链接已经成功切换为https链接。你可以使用https链接进行push、pull等操作。

标签:git,remote,链接,ssh,https,远程
From: https://www.cnblogs.com/Simoon/p/18201556

相关文章

  • 如何解决git代码冲突
    1,右键------statshchanges2.具体操作步骤 <<<<<<<HEAD你的更改=======合并源的更改>>>>>>>commit-hash 保留 <<<<<<< 和 ======= 之间的内容表示保留你的更改,保留 ======= 和 >>>>>>> 之间的内容表示接受合并源的更改。最后,确保你......
  • 保姆教程系列:Git 实用命令详解
    !!!是的没错,胖友们,保姆教程系列又更新了!!!@目录前言1.将本地项目推送到远程仓库2.IdeaGit回退到某个历史版本3.修改项目关联远程地址方法4.Git修改分支的名称5.Git删除分支6.master分支代码复制到新的分支7.Git迁移项目到其他代码仓库,且保留分支与提交记录8.Git相关命令操作......
  • Reflective journal about digital story
    Process:IfirstchosethestoryIpreferred,andafterfindingthestorytext,Ideliberatedrepeatedly,puttingmyselfintotheprotagonist.Imaginingwhattheprotagonistthoughtof,didandsaid,Igotthefirst-personpointofviewtext.ThenIbegan......
  • git强行拉取远程到本地并覆盖本地
    gitfetch--allgitreset--hardorigin/main步骤解释如下:gitfetch--all:这个命令会从远程仓库获取所有分支的最新状态,但不会自动合并到当前工作目录。gitreset--hardorigin/main:这个命令会将本地仓库重置到远程仓库的main分支的最新状态。这里的origin/main指的是......
  • Reflective Journal on Digital Story
    Makingadigitalstoryinvolvedseveralsteps.Istartedbybrainstormingideasandthemes.Then,Icreatedastoryboard,andfindsomeaudioclips.Afterthat,Iusedvideoeditingsoftwaretopieceeverythingtogether.Finally,Ireviewedandrefinedth......
  • 给github新增讨论功能
    给github新增讨论功能giscus讨论功能说明https://giscus.app/zh-CNgiscusGitHubhttps://github.com/giscus/giscus/blob/main/README.zh-CN.md......
  • 2_Reflective journal about digital story
    Reflectivejournalaboutdigitalstory1) the process of making a digital story First and foremost, I decide on the story I wish to present, and afterwards, I summarize it based on its original content. Secondly, I found a few......
  • 【工具使用】【Shell脚本】【gitlab】下拉所有的仓库代码
    1 前言电脑重置了或者新的项目代码,仓库里二三十个,一个一个拉属实有点拉跨,今儿空了整了个脚本,可以拉下所有的仓库代码。2 前置需要装一个解析json的,windows的话可以直接下载:下载,mac的话可以再官网下载:官网地址。然后加入到PATH下,效果如下:git上新建个access_token,下......
  • git branch managment
    主分支master正式版本对于科研:可以是最好的指标开发分支develop可以是预发布,或者开发的分支推荐使用--no-ff添加合并节点临时分支功能feature预发布release修改bugfixbug临时添加使用完之后需要删除部分功能暂时无法实现暂时搁置merge到develop,......
  • git cherry-pick
    chooseacommitfromonebranchandapplyittoanother。gitcherry-pick{commit1}{commit2}连续的提交A..B提交A必须早于提交B。使用上面的命令,提交A将不会包含在Cherrypick中。如果要包含提交A,可以使用下面的语法。gitcherry-pickA^..B和merge......