UNPKG

7.97 kBJSONView Raw
1{
2 "displayName": "Git",
3 "description": "Git SCM Integration",
4 "command.clone": "Clone",
5 "command.init": "Initialize Repository",
6 "command.openRepository": "Open Repository",
7 "command.close": "Close Repository",
8 "command.refresh": "Refresh",
9 "command.openChange": "Open Changes",
10 "command.openFile": "Open File",
11 "command.openHEADFile": "Open File (HEAD)",
12 "command.stage": "Stage Changes",
13 "command.stageAll": "Stage All Changes",
14 "command.stageSelectedRanges": "Stage Selected Ranges",
15 "command.revertSelectedRanges": "Revert Selected Ranges",
16 "command.stageChange": "Stage Change",
17 "command.revertChange": "Revert Change",
18 "command.unstage": "Unstage Changes",
19 "command.unstageAll": "Unstage All Changes",
20 "command.unstageSelectedRanges": "Unstage Selected Ranges",
21 "command.clean": "Discard Changes",
22 "command.cleanAll": "Discard All Changes",
23 "command.commit": "Commit",
24 "command.commitStaged": "Commit Staged",
25 "command.commitEmpty": "Commit Empty",
26 "command.commitStagedSigned": "Commit Staged (Signed Off)",
27 "command.commitStagedAmend": "Commit Staged (Amend)",
28 "command.commitAll": "Commit All",
29 "command.commitAllSigned": "Commit All (Signed Off)",
30 "command.commitAllAmend": "Commit All (Amend)",
31 "command.restoreCommitTemplate": "Restore Commit Template",
32 "command.undoCommit": "Undo Last Commit",
33 "command.checkout": "Checkout to...",
34 "command.branch": "Create Branch...",
35 "command.branchFrom": "Create Branch From...",
36 "command.deleteBranch": "Delete Branch...",
37 "command.renameBranch": "Rename Branch...",
38 "command.merge": "Merge Branch...",
39 "command.createTag": "Create Tag",
40 "command.fetch": "Fetch",
41 "command.fetchPrune": "Fetch (Prune)",
42 "command.fetchAll": "Fetch From All Remotes",
43 "command.pull": "Pull",
44 "command.pullRebase": "Pull (Rebase)",
45 "command.pullFrom": "Pull from...",
46 "command.push": "Push",
47 "command.pushForce": "Push (Force)",
48 "command.pushTo": "Push to...",
49 "command.pushToForce": "Push to... (Force)",
50 "command.pushWithTags": "Push With Tags",
51 "command.pushWithTagsForce": "Push With Tags (Force)",
52 "command.addRemote": "Add Remote",
53 "command.removeRemote": "Remove Remote",
54 "command.sync": "Sync",
55 "command.syncRebase": "Sync (Rebase)",
56 "command.publish": "Publish Branch",
57 "command.showOutput": "Show Git Output",
58 "command.ignore": "Add File to .gitignore",
59 "command.stashIncludeUntracked": "Stash (Include Untracked)",
60 "command.stash": "Stash",
61 "command.stashPop": "Pop Stash...",
62 "command.stashPopLatest": "Pop Latest Stash",
63 "command.stashApply": "Apply Stash...",
64 "command.stashApplyLatest": "Apply Latest Stash",
65 "config.enabled": "Whether git is enabled.",
66 "config.path": "Path and filename of the git executable, e.g. `C:\\Program Files\\Git\\bin\\git.exe` (Windows).",
67 "config.autoRepositoryDetection": "Configures when repositories should be automatically detected.",
68 "config.autoRepositoryDetection.true": "Scan for both subfolders of the current opened folder and parent folders of open files.",
69 "config.autoRepositoryDetection.false": "Disable automatic repository scanning.",
70 "config.autoRepositoryDetection.subFolders": "Scan for subfolders of the currently opened folder.",
71 "config.autoRepositoryDetection.openEditors": "Scan for parent folders of open files.",
72 "config.autorefresh": "Whether auto refreshing is enabled.",
73 "config.autofetch": "When enabled, commits will automatically be fetched from the default remote of the current Git repository.",
74 "config.autofetchPeriod": "Duration in seconds between each automatic git fetch, when `git.autofetch` is enabled.",
75 "config.confirmSync": "Confirm before synchronizing git repositories.",
76 "config.countBadge": "Controls the git badge counter.",
77 "config.countBadge.all": "Count all changes.",
78 "config.countBadge.tracked": "Count only tracked changes.",
79 "config.countBadge.off": "Turn off counter.",
80 "config.checkoutType": "Controls what type of branches are listed when running `Checkout to...`.",
81 "config.checkoutType.all": "Show all references.",
82 "config.checkoutType.local": "Show only local branches.",
83 "config.checkoutType.tags": "Show only tags.",
84 "config.checkoutType.remote": "Show only remote branches.",
85 "config.branchValidationRegex": "A regular expression to validate new branch names.",
86 "config.branchWhitespaceChar": "The character to replace whitespace in new branch names.",
87 "config.ignoreLegacyWarning": "Ignores the legacy Git warning.",
88 "config.ignoreMissingGitWarning": "Ignores the warning when Git is missing.",
89 "config.ignoreLimitWarning": "Ignores the warning when there are too many changes in a repository.",
90 "config.defaultCloneDirectory": "The default location to clone a git repository.",
91 "config.enableSmartCommit": "Commit all changes when there are no staged changes.",
92 "config.enableCommitSigning": "Enables commit signing with GPG.",
93 "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.",
94 "config.decorations.enabled": "Controls whether Git contributes colors and badges to the explorer and the open editors view.",
95 "config.promptToSaveFilesBeforeCommit": "Controls whether Git should check for unsaved files before committing.",
96 "config.postCommitCommand": "Runs a git command after a successful commit.",
97 "config.postCommitCommand.none": "Don't run any command after a commit.",
98 "config.postCommitCommand.push": "Run 'Git Push' after a successful commit.",
99 "config.postCommitCommand.sync": "Run 'Git Sync' after a successful commit.",
100 "config.showInlineOpenFileAction": "Controls whether to show an inline Open File action in the Git changes view.",
101 "config.showPushSuccessNotification": "Controls whether to show a notification when a push is successful.",
102 "config.inputValidation": "Controls when to show commit message input validation.",
103 "config.inputValidationLength": "Controls the commit message length threshold for showing a warning.",
104 "config.inputValidationSubjectLength": "Controls the commit message subject length threshold for showing a warning. Unset it to inherit the value of `config.inputValidationLength`.",
105 "config.detectSubmodules": "Controls whether to automatically detect git submodules.",
106 "config.detectSubmodulesLimit": "Controls the limit of git submodules detected.",
107 "config.alwaysShowStagedChangesResourceGroup": "Always show the Staged Changes resource group.",
108 "config.alwaysSignOff": "Controls the signoff flag for all commits.",
109 "config.ignoredRepositories": "List of git repositories to ignore.",
110 "config.scanRepositories": "List of paths to search for git repositories in.",
111 "config.showProgress": "Controls whether git actions should show progress.",
112 "config.rebaseWhenSync": "Force git to use rebase when running the sync command.",
113 "config.confirmEmptyCommits": "Always confirm the creation of empty commits.",
114 "config.fetchOnPull": "Fetch all branches when pulling or just the current one.",
115 "config.autoStash": "Stash any changes before pulling and restore them after successful pull.",
116 "config.allowForcePush": "Controls whether force push (with or without lease) is enabled.",
117 "config.useForcePushWithLease": "Controls whether force pushing uses the safer force-with-lease variant.",
118 "config.confirmForcePush": "Controls whether to ask for confirmation before force-pushing.",
119 "config.openDiffOnClick": "Controls whether the diff editor should be opened when clicking a change. Otherwise the regular editor will be opened.",
120 "colors.added": "Color for added resources.",
121 "colors.modified": "Color for modified resources.",
122 "colors.deleted": "Color for deleted resources.",
123 "colors.untracked": "Color for untracked resources.",
124 "colors.ignored": "Color for ignored resources.",
125 "colors.conflict": "Color for resources with conflicts.",
126 "colors.submodule": "Color for submodule resources."
127}
\No newline at end of file