官网:https://git-scm.com/
下载:https://git-scm.com/downloads
文档:https://git-scm.com/doc
Windows GUI 工具:
• GitKraken:https://www.gitkraken.com/
• TortoiseGit:https://tortoisegit.org/
常用命令
SSH Keygen 生成秘钥
ssh-keygen -b 4096 -t rsa -C "Your Description Here"
ssh-keygen 生成、管理和转换认证密钥
在 Winsows 中,先将ssh-keygen 的路径添加到 Path:C:\Program Files\Git\usr\bin
指定SSH秘钥
方法一
在 git bash 命令行窗口输入
ssh-agent bash
ssh-add ~/.ssh/id_rsa_1
方法二:在项目中
git config core.sshCommand "ssh -i S:/SSH-PATH/zenkr-20180917 -F /dev/null"