1.在GitHub上建立项目
2.安装配置Git
2.安装配置Git
git config --global user.name "Your Real Name"3.Git Bash,创建SSH key
git config --global user.email you@email.address
ssh-keygen -C 'your@email.address' -t rsa4.Account Settings配置SSH
5.上传代码
git init 【第一次】
git add .
git commit -m 'Test'
git remote add origin git@github.com:wendy2013/XXX.git 【第一次】
git push origin master
git错误1:fatal: The remote end hung up unexpectedly(意外挂断)
后来发现是提交大文件导致http postbuffer溢出,将postbuffer改大就可以了
git config http.postBuffer 524288000
git错误2:failed to push some refs to 'git@github.com:wendy2013/wx.git'(未能推动一些裁判)
建项目:http://blog.csdn.net/laozitianxia/article/details/50682100
错误1:http://blog.csdn.net/u012973744/article/details/18814397