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
时间: 2024-10-25 07:19:12