@@ -860,7 +860,7 @@ contains |
| 860 | 860 | |
| 861 | 861 | ! Push with upstream configuration to origin |
| 862 | 862 | print '(A)', 'No upstream configured. Pushing to origin/' // trim(current_branch) // '...' |
| 863 | | - write(command, '(A,A,A)') 'git push -u origin "', trim(current_branch), '" 2>&1' |
| 863 | + write(command, '(A,A,A)') 'git push -u origin "', trim(current_branch), '"' |
| 864 | 864 | call execute_command_line(trim(command), exitstat=status) |
| 865 | 865 | |
| 866 | 866 | if (status == 0) then |
@@ -874,7 +874,7 @@ contains |
| 874 | 874 | else |
| 875 | 875 | ! Upstream exists - do regular push |
| 876 | 876 | print '(A)', 'Pushing to upstream...' |
| 877 | | - call execute_command_line('git push 2>&1', exitstat=status) |
| 877 | + call execute_command_line('git push', exitstat=status) |
| 878 | 878 | |
| 879 | 879 | if (status == 0) then |
| 880 | 880 | print '(A)', achar(27) // '[32m✓ Pushed successfully!' // achar(27) // '[0m' |
@@ -1910,7 +1910,7 @@ contains |
| 1910 | 1910 | |
| 1911 | 1911 | ! Push specific tag to origin |
| 1912 | 1912 | print '(A)', 'Pushing tag to origin...' |
| 1913 | | - write(command, '(A,A,A)') 'git push origin "', trim(tag_name), '" 2>&1' |
| 1913 | + write(command, '(A,A,A)') 'git push origin "', trim(tag_name), '"' |
| 1914 | 1914 | call execute_command_line(trim(command), exitstat=status) |
| 1915 | 1915 | |
| 1916 | 1916 | if (status == 0) then |