1. 安装
1.1 cygwin安装
cygwin下载
注意:添加make命令,在Select Packages一步,将Devel@Default改为Devel@Install
1.2 git for windows下载安装
2. github配置
2.1 github.com上注册用户
用户名:stormhouse; 邮箱:stormhouse@yeah.net
2.2 初始配置
打开Git Bash,执行以下命令
git config --global user.name "stormhouse"
git config --global user.email stormhouse@yeah.net
查看
git config -l
2.3 创建SSH密匙
按提示输入文件名及密码
ssh-keygen -C 'stormhouse@yeah.net' -t rsa
2.4 提交密匙
登录github.com,点击Account settings -> SSH Keys -> Add SSH Key,
把c:\user\${username}.ssh\id_rsa.pub中内容保存到Key中
打开命令行,测试连接
ssh -v git@github.com --测试连接
会提示你输入创建密匙时的密码
3. 创建项目,上传
3.1 创建本地仓库
Git Bash下,切到项目的根目录下,如test-demo
git init
添加一个文件index.html
git add .
提交到仓库(-m是提交的注释)
git commit -m 'add index.html'
3.2 提交代码到github
登录github,单击Create a new repo,名称为test-demo
添加远程url,打开Git Bash,注意要换为你的用户名和项目名
git remote add origin git@github.com:stormhouse/test-demo.git
提交
git push origin master
刷新你的github.com主页,就可以看到提交的index.html文件了
(完)
Comments
comments powered by Disqus