pls who was able to navigate through this assignment because i am caught up in this loop after several attempt
The problem here is that you used the wrong command. When you do
git clone /opt/demo.git /usr/src/kodekloudrepos
you turn “kodekloudrepos” into a git repository. You want the repo to be inside of kodekloudrepos. Instead, do
cd /usr/src/kodekloudrepos
git clone /opt/demo.git
and you will get a better result.
