当前位置:   article > 正文

git-1_远程仓库相关命令_和远程仓库相关的git命令

和远程仓库相关的git命令
检出仓库:        $ git clone git://github.com/jquery/jquery.git
查看远程仓库:$ git remote -v
查看远程仓库信息: git remote show [remote-name]  //git remote show origin(origin is alias name of the URL)
删除本地库中已经不存在的分支: `$git remote prune origin` 
添加远程仓库:$ git remote add [name] [url]
删除远程仓库:$ git remote remove [name]
远程仓库重命名: $ git remote rename aaa bbb
Fetch remote repo: `$`git remote update   == git fetch -a
修改远程仓库:$ git remote set-url --push [name] [newUrl]
拉取远程仓库:$ git pull [remoteName] [localBranchName]
推送远程仓库:$ git push [remoteName] [localBranchName]

*如果想把本地的某个分支test提交到远程仓库,并作为远程仓库的master分支,或者作为另外一个名叫test的分支,如下:

$git push origin test:master         // 提交本地test分支作为远程的master分支
$git push origin test:test              // 提交本地test分支作为远程的test分支
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/120149
推荐阅读
相关标签
  

闽ICP备14008679号