http链接
1.设置user.name user.email
在开始之前请确保 执行git init 进行初始化操作
使用命令 git config --local user.name 'yourusername' 以及
git config --local user.email 'youruseremail' 创建你的 name和email
2.设置远程仓库地址
以Git网址为例,进入到你的个人仓库
随后点击右上角克隆/下载 获取 http
随后在你的本地添加远程仓库
执行 git remote add origin https:(你的远程仓库地址)
成功添加可通过 git config --local -l 查看 如下图就是成功添加