wiky / node.svn

node svn command

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

svn.js

Install

npm install -g node.svn

Usage

var SVN = require('svn');
var svn = new SVN();

svn.co('http://svn.example.com/path/to/your/project', function (err, info) {
	// ..
});

more read the API.

API

first, require svn.js and new

var SVN = require('svn');
var svn = new SVN();

SVN standard commands

API base on SVN standard commands (svn command reference)

add

svn.add(files[, callback])

ci (or commit)

svn.ci(files[, callback])

info

todo ....

About

node svn command

License:MIT License


Languages

Language:JavaScript 100.0%