我收到了一个git捆绑包文件或(file.bundle)作为电子邮件附件。我通过以下方式打开它:
git init
git pull file.bundle master电子邮件说,为了把它捆绑回去,把它放在git捆绑包中,但在终端中,我得到了这个:
usage: git bundle create <file> <git-rev-list args>
or: git bundle verify <file>
or: git bundle list-heads <file> [<refname>...]
or: git bundle unbundle <file> [<refname>...]发布于 2015-02-01 13:58:30
试试git bundle create file.bundle --branches master
https://stackoverflow.com/questions/28079641
复制相似问题