git 教程

本地

git init

git add .

git commit -m "xxx"

远程

git remote add orgin http:sss.git

git pull origin master   下拉合并

git push  -u origin master 上传

原文地址:https://www.cnblogs.com/nku-wangfeng/p/12031014.html