Total Pageviews

Monday 19 May 2014

ungit


NPM version Build Status
The easiest way to use git. On any platform. Anywhere.
Follow @ungitui on twitter
Quick intro to ungit: http://youtu.be/hkBVAi3oKvo

Installing

Requires node.js (≥ 0.10), npm (≥ 1.3.1, comes with node.js) and git (≥ 1.8.x). To install ungit just type:
npm install -g ungit
NOTE: If your system requires root access to install global npm packages, make sure you use the -H flag:
sudo -H npm install -g ungit

Using

Anywhere you want to start, just type:
ungit
This will launch the server and open up a browser with the ui.

Configuring

Put a configuration file called .ungitrc in your home directory (/home/USERNAME on *nix, C:/Users/USERNAME/ on windows). Can be in either json or ini format. See source/config.js for available options.
You can also override configuration variables at launch by specifying them as command line arguments; ungit --port=8080. To disable boolean features use --no: ungit --no-autoFetch.
Example of ~/.ungitrc configuration file to change default port and enable bugtracking:
{
    "port": 8080,
    "bugtracking": true
}
Ungit uses rc for configuration, which in turn uses optimist for command line arguments. See corresponding documentations for more details.

from https://github.com/FredrikNoren/ungit