Hello All,
I encountered error at step 1 of the DO180 Section 6.8 Guided Exercise: Creating a Containerized Application with Source-to-Image. Instructions executed were:
$ cd ~/DO180-apps
$ git checkout master
$ git checkout -b s2i
$ git push -u origin s2i
==> error happened here ...
Can anyone advise me how to resolve this issue ? Thanks.
the error comes because your local branch is ahead ( more updates ) than the remote branch.
run $ git status to know the differents
to fix the mentioned errorn
run $git push -f origin s2i
check appendix D for git commands.
Thank you, Joseph.
It works as your description.
Red Hat
Learning Community
A collaborative learning environment, enabling open source skill development.