标签:
git init
git remote add origin https:// //git账号中的网址
(git remote //可以查询添加的远程仓库)
git add . //添加刚刚导入的整个工程
git commit -m “添加工程"
git push -u origin master (第一次的话有冲突,强制Push: git push -f origin master)
标签:
原文地址:http://www.cnblogs.com/block123/p/5480873.html