git操作
Posted Kevin_1967
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git操作相关的知识,希望对你有一定的参考价值。
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
以上是关于git操作的主要内容,如果未能解决你的问题,请参考以下文章