1 min read

GIT-从零到壹

注:<> 为必填项,[]为选填项

安装git

安装教程参考:GIT官网-起步

生成密钥对

ssh-keygen -t rsa -C <你的邮箱> // 生成密钥,一路回车即可生成~/.ssh/id_rsa
例:ssh-keygen -t rsa -C me@helibin.com

添加公钥到git服务器

配置git

# 所有项目(在任意位置执行以下命令)
git config --global user.name <你的名字>
git config --global user.email <你的邮箱>
例:git config --global user.name lybeen
    git config --global user.email me@helibin.com
# 某一项目(在项目目录执行以下命令)
git config --local user.name <你的名字>
git config --local user.email <你的邮箱>
例:git config --local user.name 何丽彬
    git config --local user.email helibin@work.com

免密码连接git服务器配置

echo '
# AJAX派
Host git.ajaxp.com
HostName git.ajaxp.com
Port 60222
IdentityFile ~/.ssh/id_rsa
User git' | tee -a ~/.ssh/config

测试git服务器连接

ssh -T git@git.ajaxp.com

拉取代码

git clone <项目地址>
例:git clone git.ajaxp.com:helibin/test.git