how to open a .bundle file

23k Views Asked by At

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!

2

There are 2 best solutions below

0
On BEST ANSWER

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
2
On
git clone file.bundle targetdir

Or

git pull /tmp/file.bundle REFNAME