zoukankan      html  css  js  c++  java
  • git杂记-远程仓库的使用

    1. 查看远程仓库;克隆自己的仓库,如不命名则默认远程仓库名字为origin;
      $ git clone https://github.com/OuFeng/JF_WEB.git
      Cloning into 'ticgit'...
      remote: Reusing existing pack: 1857, done.
      remote: Total 1857 (delta 0), reused 0 (delta 0)
      Receiving objects: 100% (1857/1857), 374.35 KiB | 268.00 KiB/s, done.
      Resolving deltas: 100% (772/772), done.
      Checking connectivity... done.
      $ cd ticgit
      $ git remote -v         --查看本地仓库中对应有哪些远程仓库;如果远程仓库不止有一个的话,则会列出多个仓库。

        origin https://github.com/OuFeng/JF_WEB.git (fetch)
        origin https://github.com/OuFeng/JF_WEB.git (push)

    2. 添加远程仓库;名称为pb。
      $ git remote
      origin
      $ git remote add pb https://github.com/paulboone/ticgit
      $ git remote -v
      origin    https://github.com/schacon/ticgit (fetch)
      origin    https://github.com/schacon/ticgit (push)
      pb    https://github.com/paulboone/ticgit (fetch)
      pb    https://github.com/paulboone/ticgit (push)
    3. 从远程仓库抓取与拉取。
      --抓取origin远程库的所有分支;只抓取数据,并不自动合并;
      $ git fetch origin
      --拉取origin远程库的所有分支;只抓取数据,自动合并;
      $ git pull origin
    4. 推送到远程仓库;推送到origin仓库的master分支;
      $ git push origin master
    5. 查看远程仓库,查看origin仓库的更多信息
      $ git remote show origin
    6. 远程仓库的重命名和删除
      --把远程仓库pb重命名为paul
      $ git remote rename pb paul
      
      
      --删除paul远程分支的引用
      $ git remote rm paul
  • 相关阅读:
    socket协议和http协议性能对比
    PHP对象在内存中的分配
    如何打造高性能Web应用
    ubuntu 16.04 实现远程图形界面连接
    NACOS升级操作
    ulimit 更改 gcc升级 查看显卡状态命令
    CentOS7下firewall-cmd防火墙使用
    Nacos 1.1.0发布,支持灰度配置和地址服务器模式
    NGINX限流配置
    学Redis
  • 原文地址:https://www.cnblogs.com/oufeng/p/6662931.html
Copyright © 2011-2022 走看看