1、https://github.com/ -->Pricing and Signup -->Create a free account
2、生成公钥:私钥
ssh-keygen -t rsa -C xxxxx@qq.com(注册github时的email)
3、登陆github,选择Account Settings-->SSH Keys 添加ssh Key:打开你生成的id_rsa.pub文件,将其中内容拷贝至此。(ssh -T git@github.com测试通不通)
4、在github下建自己的Repository。Create a New Repository。
5、设置下使用的账号
git config --global user.email "#####@qq.com"
git config --global user.name "Your Name"
6、本地
git init //初始化本地仓库
git add README.md //添加
git commit -m "first commit"//提交到要地仓库,并写一些注释
git remote add XXXXX git@github.com:youname/Test.git //连接远程仓库并建了一个名叫XXXXX的别名
git push -u XXXXX master //将本地仓库的东西提交到地址是XXXXX的地址,master分支下
同步到此结束
如果换了一台机器,不想同步多余版本,可以新建一个分支:
git branch test
然后
git push XXXXX test
查看所有分支:
git branch -a
切换分支:
git checkout 分支名