You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: extensions/git/package.nls.json
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,9 @@
37
37
"command.publish": "Publish Branch",
38
38
"command.showOutput": "Show Git Output",
39
39
"command.ignore": "Add File to .gitignore",
40
+
"command.stash": "Stash",
41
+
"command.stashPop": "Stash Pop",
42
+
"command.stashPopLatest": "Stash Pop Latest",
40
43
"config.enabled": "Whether git is enabled",
41
44
"config.path": "Path to the git executable",
42
45
"config.autorefresh": "Whether auto refreshing is enabled",
@@ -49,5 +52,6 @@
49
52
"config.ignoreLimitWarning": "Ignores the warning when there are too many changes in a repository",
50
53
"config.defaultCloneDirectory": "The default location where to clone a git repository",
51
54
"config.enableSmartCommit": "Commit all changes when there are no staged changes.",
52
-
"config.enableCommitSigning": "Enables commit signing with GPG."
55
+
"config.enableCommitSigning": "Enables commit signing with GPG.",
56
+
"config.discardAllScope": "Controls what changes are discarded by the `Discard all changes` command. `all` discards all changes. `tracked` discards only tracked files. `prompt` shows a prompt dialog every time the action is run."
constmessage=localize('there are untracked files',"There are untracked files ({0}) which will be DELETED if discarded.\n\nWould you like to delete untracked files when discarding all changes?",untrackedCount);
constmessage=localize('confirm discard all',"Are you sure you want to discard ALL ({0}) changes?\nThis is IRREVERSIBLE!\nYour current working set will be FOREVER LOST.",resources.length);
652
704
constyes=localize('discardAll',"Discard ALL Changes");
0 commit comments