1 | initial version |
no that's not your fault.
you can retrigger the buildbot with:
git --amend
with no comment, message or such. this will put you into 'rebase' mode:
press:
<esc> (to get into command mode)
:w <enter>
:q <enter>
then do a :
git push -f origin java_features2d
the -f options is important !
good luck, and again, such things happen, problem is not on your side..
2 | No.2 Revision |
no that's not your fault.
you can retrigger the buildbot with:
git --amend
with no comment, message or such. this will put you into interactive 'rebase' mode: mode (vi):
press:
<esc> (to get into command mode)
:w <enter>
:q <enter>
in other words, leave everything unchanged, then do a :
git push -f origin java_features2d
the -f options is important !
good luck, and again, such things happen, problem is not on your side..