最简单 git修改ssh方式为https

git修改ssh方式为https

网上看了好多方法感觉有点过于复杂
找了个最简单的方法

  1. 找到项目所在目录
  2. 进入 .git 隐藏目录
  3. 修改romote “origin” 下的url路径
[remote "origin"]
# 这里改为你要修改的连接方式
url = https://xxxx.xxx.xxx.git 或 url = [email protected]
fetch = +refs/heads/*:refs/remotes/origin/*

这样就可以了 简单吧

你可能感兴趣的:(操作系统,git,ssh,github)