mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 06:34:26 +02:00
really feeling good about where i am
This commit is contained in:
parent
9b62f06bc2
commit
9221088853
4 changed files with 110 additions and 38 deletions
|
@ -21,3 +21,11 @@ CommandResult.prototype.toString = function() {
|
|||
CommandResult.prototype.toResult = function() {
|
||||
return this.msg.replace('\n', '</br>');
|
||||
};
|
||||
|
||||
function GitError(msg) {
|
||||
this.msg = msg;
|
||||
}
|
||||
|
||||
GitError.prototype.toString = function() {
|
||||
return 'Git Error: ' + this.msg;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue