복사한 후 la -all 명령어로 목록을 확인해 보세요.
infoh@hojin MINGW64 /e/gitstudy05_clone (master)
$ ls -all 목록 확인
total 13
drwxr-xr-x 1 infoh 197609 0 12월 12 17:23 .
drwxr-xr-x 1 infoh 197609 0 12월 12 17:23 ..
drwxr-xr-x 1 infoh 197609 0 12월 12 17:23 .git 숨김 저장소
-rw-r--r-- 1 infoh 197609 14 12월 12 17:23 README.md
원격 서버를 정상적으로 복제했습니다. 복제 후 remote 명령어를 사용하여 원격 저장소 정보를 확인합니다.
infoh@gitstudy MINGW64 /e/gitstudy05_clone (master)
$ git remote -v 원격 저장소 목록
origin https://github.com/jinygit/gitstudy05.git (fetch)
origin https://github.com/jinygit/gitstudy05.git (push)
remote로 확인하면 연결된 서버 설정들이 표시됩니다. 로컬 저장소를 생성한 후, 처음으로 서버에서 코드를 내려받을 때는 clone 명령어를 사용하면 좀 더 편리합니다.
▼ 그림 5-9 원격 저장소와 로컬 저장소 연결