1.常见的基于Git版本控制软件的远程仓库
国外
• Github(https://www.github.com)
• Bitbucket (https://www.bitbucket.org)
国内
•码云(http://git.oschina.net/)
• Coding(https://coding.net/)
私服
• Gogs(https://gogs.io/)
• GitLab(https://about.gitlab.com/)
这里主要介绍GitHub的使用。
2.使用步骤
①注册github账号并登陆
②执行命令生成SSH公钥
ssh-keygen -t rsa -C “电子邮件地址”
③添加SSH keys( https://github.com/settings/keys)
3.常用命令
从远程仓库获取数据
git clone url
添加远程仓库
git remote add 缩略名 地址
将本地仓库推送到远程服务器
git push 缩略名 分支名称