使用git拉文件

使用git拉文件

yum install git

git config --global user.name "xxx"
git config --global user.email "[email protected]"

生成秘钥对
ssh-keygen -t rsa -C "[email protected]"
cat ~/.ssh/id_rsa.pub

添加公钥到你的远程仓库
登陆你的github帐户。点击你的头像,然后 Settings -> 左栏点击 SSH and GPG keys -> 点击 New SSH key

git clone git@xxx  mydir

猜你喜欢

转载自blog.51cto.com/12473494/2317568