zoukankan      html  css  js  c++  java
  • 从.git文件夹恢复仓库文件

    转自:

    cd repo.git
    # 创建budele文件
    git bundle create ./reponame.bundle --all
    # 从bundle文件中clone出代码
    git clone ./reponame.bundle reponame
    # 这是文件夹内会出现一个 reponame 文件夹,这个文件夹内就是所有的代码文件
    # 并且还可以恢复其他分支的代码
    git clone -b release ./reponame.bundle reponame
    
    # 新建新的git仓库 名为 newrepo
    git remote rm origin
    # url.git 为新的git仓库地址
    git remote add origin newrepo.git
  • 相关阅读:
    c++ 01
    unix c 11
    unix c 10
    unix c 09
    unix c 08
    unix c 07
    unix c 06
    unix c 05
    unix c 04
    Petrozavodsk Summer Training Camp 2017
  • 原文地址:https://www.cnblogs.com/xwgli/p/13178843.html
Copyright © 2011-2022 走看看