mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-25 15:38:33 +02:00
sweet checkstrings
This commit is contained in:
parent
dbdb1e5682
commit
3d01473ec4
2 changed files with 49 additions and 2 deletions
|
@ -1388,7 +1388,7 @@ GitEngine.prototype.deleteBranch = function(name) {
|
|||
this.HEAD.get('target') === target) {
|
||||
|
||||
throw new GitError({
|
||||
msg: intl.str('git-error-brnach')
|
||||
msg: intl.str('git-error-branch')
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -1472,7 +1472,7 @@ GitEngine.prototype.statusStarter = function() {
|
|||
lines.push(intl.str('git-status-detached'));
|
||||
} else {
|
||||
var branchName = this.HEAD.get('target').get('id');
|
||||
lines.push(intl.str('git-stauts-onbranch', {branch: branchName}));
|
||||
lines.push(intl.str('git-status-onbranch', {branch: branchName}));
|
||||
}
|
||||
lines.push('Changes to be committed:');
|
||||
lines.push('');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue