Skip to content

Commit

Permalink
Adds quick access to Git Command Palette commands
Browse files Browse the repository at this point in the history
  • Loading branch information
eamodio committed Jan 17, 2024
1 parent 9763a98 commit c73f316
Show file tree
Hide file tree
Showing 3 changed files with 298 additions and 4 deletions.
195 changes: 192 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5663,6 +5663,26 @@
"title": "Git Branch...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.branch.create",
"title": "Git Create Branch...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.branch.delete",
"title": "Git Delete Branch...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.branch.prune",
"title": "Git Prune Branches...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.branch.rename",
"title": "Git Rename Branch...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.checkout",
"title": "Git Checkout...",
Expand All @@ -5673,6 +5693,11 @@
"title": "Git Cherry Pick...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.history",
"title": "Git History (log)...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.merge",
"title": "Git Merge...",
Expand All @@ -5683,6 +5708,26 @@
"title": "Git Rebase...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.remote",
"title": "Git Remote...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.remote.add",
"title": "Git Add Remote...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.remote.prune",
"title": "Git Prune Remote...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.remote.remove",
"title": "Git Remove Remote...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.reset",
"title": "Git Reset...",
Expand All @@ -5693,6 +5738,46 @@
"title": "Git Revert...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.show",
"title": "Git Show...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash",
"title": "Git Stash...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash.drop",
"title": "Git Drop Stash...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash.list",
"title": "Git Stash List...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash.pop",
"title": "Git Pop Stash...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash.push",
"title": "Git Push Stash...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.stash.rename",
"title": "Git Rename Stash...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.status",
"title": "Git Status...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.switch",
"title": "Git Switch to...",
Expand All @@ -5703,14 +5788,34 @@
"title": "Git Tag...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.tag.create",
"title": "Git Create Tag...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.tag.delete",
"title": "Git Delete Tag...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.worktree",
"title": "Git Worktree...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.worktree.create",
"title": "Git Create Worktree...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.worktree.delete",
"title": "Git Delete Worktree...",
"category": "GitLens"
},
{
"command": "gitlens.gitCommands.worktree.open",
"title": "Open Git Worktree...",
"title": "Git Open Worktree...",
"category": "GitLens"
},
{
Expand Down Expand Up @@ -5855,7 +5960,7 @@
},
{
"command": "gitlens.addAuthors",
"title": "Add Co-authors",
"title": "Add Co-authors...",
"category": "GitLens",
"icon": "$(person-add)"
},
Expand Down Expand Up @@ -6606,7 +6711,7 @@
},
{
"command": "gitlens.views.addAuthors",
"title": "Add Co-authors",
"title": "Add Co-authors...",
"category": "GitLens",
"icon": "$(person-add)"
},
Expand Down Expand Up @@ -9117,6 +9222,22 @@
"command": "gitlens.gitCommands.branch",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.branch.create",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.branch.delete",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.branch.prune",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.branch.rename",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.checkout",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
Expand All @@ -9125,6 +9246,10 @@
"command": "gitlens.gitCommands.cherryPick",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.history",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.merge",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
Expand All @@ -9133,6 +9258,22 @@
"command": "gitlens.gitCommands.rebase",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.remote",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.remote.add",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.remote.prune",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.remote.remove",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.reset",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
Expand All @@ -9141,6 +9282,38 @@
"command": "gitlens.gitCommands.revert",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.show",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash.drop",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash.list",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash.pop",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash.push",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.stash.rename",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.status",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.switch",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
Expand All @@ -9149,10 +9322,26 @@
"command": "gitlens.gitCommands.tag",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.tag.create",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.tag.delete",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.worktree",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.worktree.create",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.worktree.delete",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
},
{
"command": "gitlens.gitCommands.worktree.open",
"when": "!gitlens:disabled && !gitlens:readonly && !gitlens:untrusted && !gitlens:hasVirtualFolders"
Expand Down
Loading

0 comments on commit c73f316

Please sign in to comment.