File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
88### Added
99- Adds (re-adds) support for handling single files &mdash ; closes [ #321 ] ( https://github.com/eamodio/vscode-gitlens/issues/321 )
1010
11+ ### Fixed
12+ - Fixes [ #385 ] ( https://github.com/eamodio/vscode-gitlens/issues/385 ) - Wrong git command to delete remote branch
13+
1114## [ 8.3.2] - 2018-05-21
1215### Fixed
1316- Fixes [ #366 ] ( https://github.com/eamodio/vscode-gitlens/issues/366 ) - Running a GitLens command from a keybinding fails (more cases)
Original file line number Diff line number Diff line change @@ -234,7 +234,7 @@ export class ExplorerCommands extends Disposable {
234234 if ( ! ( node instanceof BranchNode ) ) return ;
235235
236236 if ( node . branch . remote ) {
237- this . sendTerminalCommand ( 'push' , `${ node . branch . remote } :${ node . ref } ` , node . repoPath ) ;
237+ this . sendTerminalCommand ( 'push' , `${ node . branch . getRemote ( ) } :${ node . branch . getName ( ) } ` , node . repoPath ) ;
238238 }
239239 else {
240240 this . sendTerminalCommand ( 'branch' , `-d ${ node . ref } ` , node . repoPath ) ;
You can’t perform that action at this time.
0 commit comments