왜 지금와서 설명하는지는 모르겠지만(?) 오늘은 clone에 대해 알아보도록 하자
github에서 repository를 만들었다고 치자
그럼 해당 repository의 url이 있을텐데 그걸 복사해서
git clone https://github.com/username/repositoryname
을 하면 해당 위치에 repositoryname이라는 폴더가 생성되고 그 안에 .git이 들어있을 것이다
폴더이름을 repository이름과 다르게 하고 싶다면
git clone https://github.com/username/repositoryname <new-name>
이런식으로 새로운 이름을 지으면 new-name이라는 이름의 폴더가 생성될 것이다