长虫山小木屋

没有谁会为你踏雪而来 喜欢的风景要躬亲筚路

  博客园  :: 首页  :: 新随笔  :: 联系 ::  :: 管理

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 分支名

posted on 2020-01-17 11:06  长虫山小木屋  阅读(108)  评论(0编辑  收藏  举报