git基本配置

基本配置

设置用户信息

# 打开git bash
git config --global user.name "zyw"
git config --global user.email "[email protected]"
# 查看配置信息
git config --global user.name
git config --global user.email

初始化仓库

git init

关联远程仓库

# 绑定远程仓库
git remote add origin   仓库地址
# 查看远程仓库
git remote

生成SSH公钥

# git bash
ssh-keygen -t rsa  -C  "[email protected]"        # 一直回车

关闭SSL证书认证

git config --global http.sslverify false

你可能感兴趣的:(git)