I am just starting to learn web development as a computer science student I have learned java and object oriented programming to some extent but just trying to clone a repo is really giving me a hard time for some reason, any suggestions? ive been stuck for an hour trying to clone a repo (I KNOW....)
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
Open your terminal/command prompt/whatever it's called, and type the following:
Where
REPO_HOSTER
is the website hoster your repo (likegithub.com
ofcodeberg.org
),USERNAME
is the name of the account that the repo was created by (for example,shiffman
,cli
, orKaamkiya
), andREPONAME
is the name of the repository (likep5.js
,three
,factorial
).A proper example:
Thank you!