标签:
简单总结一下:
1.git shell cd到本地项目的目录
2.git init 会创建.git文件
3.touch README .ignore .license等文件
4.git add .
5.提交一次 git commit -m ‘备注‘
6.登录到github,创建repository
6.git remote rm add origin
7.git remote add origin https://......(创建好的repository地址)
8.git pull origin master
9.git push origin master
ok~ 大概先这样
标签:
原文地址:http://www.cnblogs.com/jane-wu/p/5487662.html