git init // 初始化git
git add . // add所有文件
git commit -m "first commit" // 提交到本地仓库
git remote add origin https://github.com/yaoliangjun/Test.git // 项目地址
git push -u origin master // 提交到远程库
如果项目有其他人一起开发,在push代码之前需要pull一下最新的代码,命令如下:
git pull origin master