标签:os 使用 文件 on ad ef new as window
1. 下载mygit一路下一步默认安装
2.下载TortoiseGit
3. 设置git
$ git config --global user.name "your name"
$ git config --global user.email your_email@youremail.com
4.本地创建ssh key
$ ssh-keygen -t rsa -C your_email@youremail.com
后面的your_email@youremail.com改为你的邮箱,之后会要求确认路径和输入密码,我们这使用默认的一路回车就行。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。
回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。为了验证是否成功,在git bash下输入:
$ ssh -T git@github.com
如果是第一次的会提示是否continue,输入yes就会看到:You‘ve successfully authenticated, but GitHub does not provide shell access 。这就表示已成功连上github。
5. 登陆GitHub,然后,在右上角找到“Create a new repo”按钮,创建一个新的仓库
6. 如果是本地的新项目要提交到github
首先 在项目目录下 create repostory
标签:os 使用 文件 on ad ef new as window
原文地址:http://my.oschina.net/zhuhj/blog/336126