@@ -596,7 +596,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
596
596
self . pruneRemoteBranches = function ( e ) {
597
597
e . preventDefault ( ) ;
598
598
$ ( ".btn-prune-remote-branches" ) . addClass ( "refresh-start" ) ;
599
- webui . git ( "fetch --prune" , updateSideBar ) ;
599
+ webui . git ( "fetch --prune " , updateSideBar ) ;
600
600
}
601
601
602
602
self . getPackageVersion = function ( ) {
@@ -761,7 +761,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
761
761
if ( branchType === "remote" ) {
762
762
var remoteName = refName . split ( "/" ) [ 0 ] ;
763
763
var branchName = refName . split ( "/" ) [ 1 ] ;
764
- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
764
+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
765
765
webui . git ( "branch -l " + branchName , function ( existingBranch ) {
766
766
if ( existingBranch . length > 0 ) {
767
767
webui . git ( "checkout " + branchName , updateSideBar ) ;
@@ -782,7 +782,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
782
782
}
783
783
else {
784
784
if ( branchType === "remote" ) {
785
- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
785
+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
786
786
webui . git ( "branch -l " + branchName , function ( existingBranch ) {
787
787
if ( existingBranch . length > 0 ) {
788
788
webui . git ( "checkout " + branchName , updateSideBar ) ;
@@ -908,7 +908,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
908
908
var branchName = refName . split ( '/' ) [ 1 ] ;
909
909
910
910
if ( branchName ) {
911
- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
911
+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
912
912
}
913
913
914
914
function callTestMergeHandler ( message ) {
0 commit comments