newrepo目录下建立本地库:git init newrepo
设置用户信息:
$ git config --global user.name "runoob"
$ git config --global user.email test@runoob.com
一、使用SSH
- 生产密钥:ssh-keygen
id_rsa 文件,该文件为私有密钥文件。
id_rsa.pub 文件,该文件为公有密钥文件。 - 打开公有密钥:notepad id_rsa.pub
- IAM->用户->安全->上传SSH
- IAM控制台添加SSH生成SSH Key ID
- notepad ~/.ssh/config
将以下行添加到该文件中,其中 User 的值是您之前复制的 SSH 密钥 ID,IdentityFile 的值是私有密钥文件的路径和名称:
Host git-codecommit.*.amazonaws.com
User APKAEIBAERJR2EXAMPLE
IdentityFile ~/.ssh/id_rsa -
连接服务器
-
ssh git-codecommit.us-east-2.amazonaws.com
-
-
拷贝库文件&#