1.首先在Windows端安装git bash,安装包下载地址:https://gitforwindows.org/
下载后安装即可
2.设置用户:安装成功后需设置用户
git config --global user.name "zlp" 设置用户名(前面加--global 是将用户设置为全局用户)
git config --global user.email "[email protected]" 设置邮箱
3.在git bash中打开文件夹
在要打开的文件夹右键选择“Git Bash here”
在git bash中直接使用命令进入文件夹 cd D:/Code
查看当前所在目录:pwd
4.仓库设置,初始化本地仓库 git init 初始化成功后,文件夹中会出现.git文件
5.本地仓库与git hub中的远程仓库建立ssh连接
检查电脑上是否有ssh key : ~/.ssh 或者 ~/.ssh ls 若显示No such file or directory则表示无
创建ssh key
在git bash 中输入 ssh-keygen -t rsa -C "邮箱"
显示Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/16627/.ssh/id_rsa):
输入文件名保存ssh key密码,直接回车,使用默认地址即可
Created directory ‘/c/Users/16627/.ssh’.
则表示已创建.ssh文件
Enter passphrase (empty for no passphrase): 输入密码,在后期使用ssh传输的时候需要使用密码,为空直接回车即可
Enter same passphrase again:确认密码,直接回车即可
秘钥设置完成后会提示Your identification has been saved in /c/Users/…/.ssh/id_rsa
Your public key has been saved in /c/Users/…/.ssh/id_rsa.pub
使用~/.ssh查看显示 Is a directory即成功
添加ssh key 到git hub
打开git hub 并登录,点击右上角头像,进入"settings“,选择SSH and GPG keys,选择右上角New SSH key
title任意输入,key 打开上一步中的/c/Users/16627/.ssh文件,用记事本打开id_rsa.pub文件,将内容粘贴到key中
测试ssh key
ssh -T [email protected]
The authenticity of host ‘github.com (13.229.188.59)’ can’t be established.
RSA key fingerprint is SHA256:nThbg6kXUp…
Are you sure you want to continue connecting (yes/no/[fingerprint])?
输入yes
接下来就会提示你输入密码,如果上边设置ssh的时候,你没设置密码会提示你:
Warning: Permanently added ‘github.com,192.30.255.112’ (RSA) to the list of known hosts.
警告完了,如果你能看到如下提示,那你已经成功设置SSH密钥。
Hi “用户名”! You’ve successfully authenticated, but GitHub does not provide shell access.
6.在本地git bash 中建立与远程仓库的ssh连接
git remote add git_test git remote add 本地仓库名 远程仓库ssh地址
git remote -v 可以查看本地仓库是否添加成功
git add -A 提交所有变化
git commit -m "修改注释"
git push -u 仓库名称 分支