git远程相关

Posted 墨染清浅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git远程相关相关的知识,希望对你有一定的参考价值。

git remote add origin git仓库地址
// 添加了远程仓库

git remote remove origin 
// 移除远程仓库

git push -u origin master
// 将本地仓库推送到远程仓库   -u 表示第一次推送master分支的所有内容,后面再推送就不需要-u了

git pull 
// 从远端更新内容到本地

git push 
// 从本地向远端推送内容

 

以上是关于git远程相关的主要内容,如果未能解决你的问题,请参考以下文章

git clone -b 相关

git 相关操作的记录

git 相关命令

git项目初次push提示error: failed to push some refs to https://gitee.com/xxxx/gittest.git’解决方案 --九五小庞(代码片段

前端git进行提交相关的代码

Git 代码管理命令