# git-browser **Repository Path**: mirrors_creationix/git-browser ## Basic Information - **Project Name**: git-browser - **Description**: Browse Git Repos offline. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-03-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README git-browser =========== ![js-git browser](http://creationix.com/git-browser-tile-1400x560-half.png) Browse Git Repos offline. ## Firefox OS Build Instructions ```sh git clone git@github.com:creationix/git-browser.git cd git-browser npm install node make.js moz ``` Then add `build/moz/manifest.webapp` to the simulator and push it to a device. ## Chrome Packaged App Build Instructions ```sh git clone git@github.com:creationix/git-browser.git cd git-browser npm install node make.js chrome ``` Then go to and "Load unpacked extension..." and browse to `build/chrome`. ## Web App Build Instructions This builds a web app that can run in a normal hosted webpage ```sh git clone git@github.com:creationix/git-browser.git cd git-browser npm install node make.js web ``` Then point your browser to `build/web/index.html`. ## Developing Instructions Included is a `monitor.sh` script that watches for file changes and updates the build directories. It accepts make targets as it's arguments, so simply replace `./make` in the above instructions with `./monitor.sh`. * Note that this requires `inotifywait` which is found in the `inotify-tools` package in Ubuntu Linux.