【GIT】Github上传本地代码详解
本教程结合Github服务端和客户端完成本地代码上传至Github,下面进行详细讲解:
1.创建Github账号,这一个步骤应该不用太多解释,直接上官网进行注册登录即可https://github.com/
2.新建一个repository。如图,注册登录之后可以找到如下页面,新建一个repository。
正确结果会显示:
Warning:Permanently added 'github.com,207.97.227.239' (RSA) to the list of known hosts. Hi LEESF! You've successfully authenticated, but GitHub does not provide shell access.
Warning 不用理会
4.clone刚才新建名为Test的repository 到本地,输入命令:
git clone https://github.com/leesf/Test.git
之后会在本地生成一个如下的目录结构:
5.把想要上传的代码文件夹复制到GitHub下(与.git处于同一目录下) 如把GitHubTest文件夹(里面包含了Test.java文件)复制到此目录中,如图:
6.开始上传文件
在Shell中依次输入如下命令:
git init
git add Test/GitHubTest git commit -m "GitHubTest" git remote add origin https://github.com/leesf/Test.git git push origin master
如果执行git remote add origin https://github.com/leesf/Test.git 出现错误:
fatal: remote origin already exists
则执行以下语句:
git remote rm origin
再次执行git remote add origin https://github.com/leesf/Test.git即可。
在执行git push origin master时,报错:
error:failed to push som refs to.......
则执行以下语句:
git pull origin master
先把远程服务器github上面的文件拉先来,再push 上去
这样整个上传过程就完成了,现在可以在GitHub上查看自己上传的源代码了。
PS:如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮,您的“推荐”,将会是我不竭的动力!
作者:leesf 掌控之中,才会成功;掌控之外,注定失败。
出处:http://www.cnblogs.com/leesf456/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
如果觉得本文对您有帮助,您可以请我喝杯咖啡!