We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0919d6d commit dca3700Copy full SHA for dca3700
src/GitBlocks.cpp
@@ -191,9 +191,9 @@ void GitBlocks::Push(wxCommandEvent &event)
191
#ifdef __WXMSW__ // Fucking hipster Windows needs some extra code
192
wxString command = _("cmd.exe /C \"") + git + _(" push origin master\"");
193
#else
194
- wxString command = _("xterm -e \"") + git + _(" push origin master\"");
+ wxString command = _("xterm -e \"") + git + _(" push origin HEAD\"");
195
#endif
196
- Execute(command, _("Pushing master to origin ..."));
+ Execute(command, _("Pushing HEAD to origin ..."));
197
}
198
199
void GitBlocks::Pull(wxCommandEvent &event)
0 commit comments