Windows 安装Git

git 下载

下载地址1

Windows 安装Git_第1张图片
下载地址

下载地址2

Windows 安装Git_第2张图片
下载地址2

git 安装

常规安装即可


Windows 安装Git_第3张图片
git安装
Windows 安装Git_第4张图片
git安装
Windows 安装Git_第5张图片
git安装
Windows 安装Git_第6张图片
git安装
Windows 安装Git_第7张图片
git安装
Windows 安装Git_第8张图片
git安装
Windows 安装Git_第9张图片
git安装
Windows 安装Git_第10张图片
git安装
Windows 安装Git_第11张图片
git安装
Windows 安装Git_第12张图片
git安装
Windows 安装Git_第13张图片
git安装
Windows 安装Git_第14张图片
git安装

git 设置

  1. 选择Git Bash Here,进入命令行模式
    Windows 安装Git_第15张图片
    进入Git 命令行模式
Windows 安装Git_第16张图片
git 命令行模式
  1. 配置全局的name和email地址
git config --global user.name "Edward"  
git config --global user.email "[email protected]"  
  1. 进入ssh文件夹
cd ~/.ssh/

如果 提示 No such file or directory ,则运行 mkdir ~/.ssh 新建文件夹

  1. 生成key
ssh-keygen -t rsa -C "[email protected]"

按下三次回车,即可生成key


Windows 安装Git_第17张图片
key
  1. 用记事本打开 id_rsa.pub,即得到ssh key

你可能感兴趣的:(Windows 安装Git)