mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 01:10:04 +02:00
add an hg commands module
This commit is contained in:
parent
40ed5f6c9b
commit
e4c0b4786c
4 changed files with 73 additions and 54 deletions
|
@ -3,12 +3,13 @@ var intl = require('../intl');
|
|||
|
||||
var Errors = require('../util/errors');
|
||||
var GitCommands = require('../git/commands');
|
||||
var MercurialCommands = require('../mercurial/commands');
|
||||
var CommandProcessError = Errors.CommandProcessError;
|
||||
var CommandResult = Errors.CommandResult;
|
||||
|
||||
var commandConfigs = {
|
||||
'git': GitCommands.gitCommandConfig,
|
||||
'hg': GitCommands.hgCommandConfig
|
||||
'hg': MercurialCommands.hgCommandConfig
|
||||
};
|
||||
|
||||
var commands = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue