前言:转载请注明出处: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 commit文件:(commit是提交到本地,还要push才能到远程仓库)
然后等这些文件全部提交到本地仓库后,再输入你要提交的仓库地址,如我的:https://github.com/hejunlin2013.git
git merge github上的文件:
git push到github仓库上去
这里会要你输入用户名和密码。密码是不可见的。
当你输入对了后,就会自动提交。
再次提交代码