This commit is contained in:
Joao Moreno
2018-09-19 11:54:01 +02:00
parent ba076500a8
commit 42f6ffc872
3 changed files with 8 additions and 0 deletions

View File

@@ -1892,6 +1892,11 @@ export class CommandCenter {
type = 'warning';
options.modal = false;
break;
case GitErrorCodes.StashConflict:
message = localize('stash merge conflicts', "There were merge conflicts while applying the stash.");
type = 'warning';
options.modal = false;
break;
case GitErrorCodes.NoUserNameConfigured:
case GitErrorCodes.NoUserEmailConfigured:
message = localize('missing user info', "Make sure you configure your 'user.name' and 'user.email' in git.");