感谢这个哥们的博客,不过里面有些错误。
下面是我自己的实践成功的:这篇文章写得是windows下的使用方法。
第一步:创建Github新账户
第二步:新建仓库
第三部:填写名称,简介(可选),勾选Initialize this repository with a README选项,这是自动创建REAMDE.md文件,省的你再创建。
第四步:安装Github shell程序,地址:
也可以在这里下载git for windows 2.第五步:打开Git Shell,输入以下命令生成密钥来验证身份
ssh-keygen -C your@email.address -t rsa 连续三个回车之后会在windows当前用户目录下生成.ssh文件夹,和linux一样。把文件夹下的id_rsa.pub文件内容全部复制。
然后打开github账户设置,如图
打开ssh keys
右上角点击add ssh key
然后在title随便输入,key栏粘贴刚才的密钥。
第六步:在Git Shell下输入命令测试刚才的公钥是否认证正确。
ssh -T git@github.com 正确结果会显示: Warning:Permanently added ‘github.com,207.97.227.239’ (RSA) to the list of known hosts. Hi Flowerowl! You’ve successfully authenticated, but GitHub does not provide shell access. warning 不用理会。第七步:clone刚才新建的repository 到本地,输入命令:
git clone
这时会在目录下生成:(注意如果你的仓库名是Test,那么会生成c:/user/Test)第八步:将想上传的代码目录拷贝到此文件夹下:
有可能还需要加上这一段
第九步:切换到Git shell 命令行下,输入命令:
git init git config –global user.email “1455971532@qq.com” git config –global user.name “caoxinyu” git commit -m ‘hellow’ git remote rm origin git remote add origin git push origin master 一切参数自己替换。 执行这一步的时候,把目录切换到test目录下。 hellow是描述信息。增
如果是以后添加,那么commit之前git add ./*一下,添加到缓冲区。 git init git add ./* git commit -m ‘hellow’ git remote rm origin git remote add origin git push origin mastergit commit -m 后面是你更改的信息
每次更改把这上面的一段复制,改改就行了。删除
git init git rm ./yuge/* git commit -m ‘nothing’ git remote rm origin git remote add origin git push origin master改 改就是你添加就行了
git init git add ./hellow.txt git commit -m ‘nothing’ git remote rm origin git remote add origin git push origin master下面的可以不看,直接用我写好的,避免各种错误。
git init git commit -m ‘stumansys’ git remote add origin git push origin master 如果执行git remote add origin ,出现错误:fatal: remote origin already exists
则执行以下语句:git remote rm origin
再往后执行git remote add origin 即可。在执行git push origin master时,报错:
error:failed to push som refs to…….
则执行以下语句:git pull origin master
先把远程服务器github上面的文件拉先来,再push 上去。最后,你可以去项目页面查看了~~代码上传成功!
有问题可以在下方留言,大家一起解决~