git提交代码到github

前言:转载请注明出处:http://blog.csdn.net/hejjunlin/article/details/52117504

git提交代码到github

命令汇总:

git init

git add README.md

git commit -m "你的说明"

git remote add origin https://github.com/hejunlin2013/RedPackage.git

git push -u origin master

git init: 把当前本地工程初始成git工程

git提交代码到github

git commit文件:(commit是提交到本地,还要push才能到远程仓库)

然后等这些文件全部提交到本地仓库后,再输入你要提交的仓库地址,如我的:https://github.com/hejunlin2013.git

git提交代码到github

git merge github上的文件:

git提交代码到github

git push到github仓库上去

这里会要你输入用户名和密码。密码是不可见的。

当你输入对了后,就会自动提交。

git提交代码到github

再次提交代码

git提交代码到github

欢迎关注我的个人公众号,android干货,源码解析,还有各种福利

git提交代码到github

上一篇:DevExpress GridView 整理(转)


下一篇:Java基础总结--IO总结1