how to open a .bundle file
Asked Answered
M

2

25

I received .bundle file in my gmail. I was told that it was a git bundle file. I tried to open it in sublime and I got a bunch of what seemed to have looked like hex values. It is suppose to be instructions for a code challenge. I have a mac. Any help would be very appreciated!

Mirilla answered 15/1, 2015 at 1:4 Comment(0)
M
33

I needed to initialize the Git repository and add master to the end of pull as shown below:

git init
git pull file.bundle master
Mirilla answered 16/1, 2015 at 4:21 Comment(0)
K
17
git clone file.bundle targetdir

Or

git pull /tmp/file.bundle REFNAME
Kerbing answered 15/1, 2015 at 1:10 Comment(2)
when I try the git clone method I get this result in the terminal: warning: remote HEAD refers to nonexistent ref, unable to checkout.Mirilla
@Mirilla that means it's not a selfcontained bundle. Pull into an existing clone that has the parent refKerbing

© 2022 - 2024 — McMap. All rights reserved.