Elfen Ring - Clone with a Difference walkthrough
Clone with a Difference
Challenge Difficulty 1/5
Get hints for this challenge from Bow Ninecandle in the Elfen Ring.
In the game we go on a boat ride and in the middle you would see Bow Ninecandle near a terminal looking like stuck halfway with something. After conversing we find that we need to help Bow with a git repository and prompted with the below question
“ We just need you to clone one repo: git clone git@haugfactory.com:asnowball/aws_scripts.git This should be easy, right ?”
Looking at Bow’s git command, its using ssh method to clone the repo and it will only if the right credentials are provided. Unknowing of the credentials we can still attempt to clone the repository using HTTPS method. So modifying Bow’s command to the following below, we have saved the day for Bow :)
>> git clone https://haugfactory.com//asnowball/aws_scripts.git
Comments
Post a Comment