标签:push https url 操作 oschina china origin mit comm
1.从github上clone下来的项目,再将该项目上传到git.oschina.net上
git remote //查看远程仓库
git remote -v //可以查看远程仓库的地址
git remote remove <name> //移除仓库
git remote add <name> <url> //eg:git remote add origin https://git.oschina.net/username/test.git
git add . //添加文件
git commit -am "first commit"
git push -u origin
标签:push https url 操作 oschina china origin mit comm
原文地址:http://www.cnblogs.com/Kevin-1967/p/7425020.html