mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-03 23:06:49 +01:00
SCM - Source Control Graph view (#226250)
* Added the new view * Add support for getting N number of commits * Added view title actions * More work to enable view/repository actions * Expand the view by default, and always show the last N commits * Add context menu actions * Improve actions * Basic infinite scrolling implemented * Better implementation using --skip instead of a cursor * Do not refresh graph when pressing Refresh * Refactor load more/caching * Rename the view * Add support for the find widget
This commit is contained in:
@@ -19,6 +19,7 @@
|
||||
"contribSourceControlHistoryItemChangesMenu",
|
||||
"contribSourceControlHistoryItemGroupMenu",
|
||||
"contribSourceControlHistoryItemMenu",
|
||||
"contribSourceControlHistoryTitleMenu",
|
||||
"contribSourceControlInputBoxMenu",
|
||||
"contribSourceControlTitleMenu",
|
||||
"contribViewsWelcome",
|
||||
@@ -1935,6 +1936,28 @@
|
||||
"group": "1_modification@3"
|
||||
}
|
||||
],
|
||||
"scm/history/title": [
|
||||
{
|
||||
"command": "git.fetchRef",
|
||||
"group": "navigation@1",
|
||||
"when": "scmProvider == git && scmHistoryItemGroupHasRemote"
|
||||
},
|
||||
{
|
||||
"command": "git.pullRef",
|
||||
"group": "navigation@2",
|
||||
"when": "scmProvider == git && scmHistoryItemGroupHasRemote"
|
||||
},
|
||||
{
|
||||
"command": "git.pushRef",
|
||||
"when": "scmProvider == git && scmHistoryItemGroupHasRemote",
|
||||
"group": "navigation@3"
|
||||
},
|
||||
{
|
||||
"command": "git.publish",
|
||||
"when": "scmProvider == git && !scmHistoryItemGroupHasRemote",
|
||||
"group": "navigation@3"
|
||||
}
|
||||
],
|
||||
"scm/historyItemChanges/title": [
|
||||
{
|
||||
"command": "git.fetchRef",
|
||||
|
||||
Reference in New Issue
Block a user