user3266824
user3266824

Reputation: 1263

how to bundle back up a git bundle file

I received a git bundle file or(file.bundle) as an email attachment. I opened it up by:

  git init
  git pull file.bundle master

The email said in order to bundle it back put in git bundle but in the terminal I get this:

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>...]

Upvotes: 1

Views: 115

Answers (1)

Travis
Travis

Reputation: 2767

Try git bundle create file.bundle --branches master

Upvotes: 1

Related Questions