@@ -596,7 +596,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
596596 self . pruneRemoteBranches = function ( e ) {
597597 e . preventDefault ( ) ;
598598 $ ( ".btn-prune-remote-branches" ) . addClass ( "refresh-start" ) ;
599- webui . git ( "fetch --prune" , updateSideBar ) ;
599+ webui . git ( "fetch --prune " , updateSideBar ) ;
600600 }
601601
602602 self . getPackageVersion = function ( ) {
@@ -761,7 +761,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
761761 if ( branchType === "remote" ) {
762762 var remoteName = refName . split ( "/" ) [ 0 ] ;
763763 var branchName = refName . split ( "/" ) [ 1 ] ;
764- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
764+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
765765 webui . git ( "branch -l " + branchName , function ( existingBranch ) {
766766 if ( existingBranch . length > 0 ) {
767767 webui . git ( "checkout " + branchName , updateSideBar ) ;
@@ -782,7 +782,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
782782 }
783783 else {
784784 if ( branchType === "remote" ) {
785- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
785+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
786786 webui . git ( "branch -l " + branchName , function ( existingBranch ) {
787787 if ( existingBranch . length > 0 ) {
788788 webui . git ( "checkout " + branchName , updateSideBar ) ;
@@ -908,7 +908,7 @@ webui.SideBarView = function(mainView, noEventHandlers) {
908908 var branchName = refName . split ( '/' ) [ 1 ] ;
909909
910910 if ( branchName ) {
911- webui . git ( "fetch --prune" + remoteName + " " + branchName ) ;
911+ webui . git ( "fetch --prune " + remoteName + " " + branchName ) ;
912912 }
913913
914914 function callTestMergeHandler ( message ) {
0 commit comments