Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to open a .bundle file

Tags:

git

git-bundle

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!

like image 309
user3266824 Avatar asked Jan 15 '15 01:01

user3266824


People also ask

How do you open .bundle files?

If you cannot open your BUNDLE file correctly, try to right-click or long-press the file. Then click "Open with" and choose an application. You can also display a BUNDLE file directly in the browser: Just drag the file onto this browser window and drop it.

How do I open a bundle file on Mac?

If you don't get an error, type open . followed by return and it will open the Bundle contents in the Finder. For some reasons control-click doesn't work for me to show up the package contents. I just see Open and Open With.

What is a .bundle file Linux?

A .bundle file is an execute file for linux to install a program. A way to install this file extensions is: sudo bash filename. For example: sudo bash myinstaller.bundle. Follow this answer to receive notifications.


1 Answers

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
like image 163
user3266824 Avatar answered Sep 20 '22 08:09

user3266824