Mac上传Github
之前第一次传github真的是一次痛苦的经历,照着网上的教程传了好久还是传不上去,下面就记一下传github的步骤。前面的配置我忘了。。。因为太乱了,但是后面我这样就可以上传了。
把要上传的东西打包,然后进入到这个包的目录下,在github上创建一个新的项目,不勾选README选项,然后按下面的步骤一步一步输入就行。
touch README.md
git init
git add README.md
git add *
git status
git commit -m "first commit"
git remote rm origin
git remote add origin3 git@github.com:github登录名/项目名称.git
git push -u origin3 master