Преглед изворни кода

Adds open branch on remote to status nodes

main
Eric Amodio пре 4 година
родитељ
комит
892ef3316d
2 измењених фајлова са 7 додато и 1 уклоњено
  1. +6
    -0
      package.json
  2. +1
    -1
      src/views/nodes/branchTrackingStatusNode.ts

+ 6
- 0
package.json Прегледај датотеку

@ -7063,6 +7063,12 @@
"group": "inline@2"
},
{
"command": "gitlens.openBranchInRemote",
"when": "gitlens:hasRemotes && !gitlens:readonly && viewItem =~ /gitlens:status:upstream:(?!none)/",
"group": "inline@99",
"alt": "gitlens.copyRemoteBranchUrl"
},
{
"command": "gitlens.views.push",
"when": "gitlens:hasRemotes && !gitlens:readonly && viewItem == gitlens:status:upstream:ahead",
"group": "1_gitlens_actions@1"

+ 1
- 1
src/views/nodes/branchTrackingStatusNode.ts Прегледај датотеку

@ -29,7 +29,7 @@ export class BranchTrackingStatusNode extends ViewNode implement
upstream: string | undefined,
upstreamType: string,
): string {
return `${BranchNode.getId(repoPath, name, root)}${this.key}(${upstream ?? ''}|${upstreamType})`;
return `${BranchNode.getId(repoPath, name, root)}${this.key}(${upstream ?? ''}):${upstreamType}`;
}
constructor(

Loading…
Откажи
Сачувај