git 初始化项目
1.配置全局的name和email,这里是的你github或者bitbucket的name和email
git config --global user.name "XXX"
git config --global user.email "XXXX@XXX.com"
2.生成key
ssh-keygen -t rsa -C "XXX@XXX.com"
3.记住密码:
git config --global credential.helper store
打开C盘,找到/.ssh/id_rsa 【用记事本打开-公钥】,
将这个公钥,copy到 阿里code中,
git add .
git commit -m'备注'
git pull origin master [拉代码]