window git 安装

git 安装

  1. 下载:https://git-scm.com/download/win
  2. 默认安装
  3. 安装成功 ,在桌面右键会有【Git bash here 】然后输入 git --version 查看版本

本地git安装配置

安装好git 配置git

  1. git config --global user.name "grow"
  2. git config --global user.email "[email protected]"
  3. git commit --amend --reset-author
    生成shh
  4. ssh-keygen -t rsa -C "user.email"
  5. ssh-keygen -t rsa -C "[email protected]"
    window 新增多个gitlab 私钥密钥,新建一个config 文件里面配置
  6. Host 120.24.157.99 HostName 120.24.157.99 User fanjianhao IdentityFile C:\Users\fanji.ssh\id_rsa
  7. Host 192.168.31.22 HostName 192.168.31.22 User fjh IdentityFile C:\Users\fanji.ssh\fjhigrowiser

你可能感兴趣的:(window git 安装)