
예전에 깃허브에 올려둔 팀 프로젝트 코드를 내 컴퓨터로 가져오고 싶어서 찾아봤다. 선행작업으로는(1) 내 컴퓨터에 Git을 설치 해두어야 하고 ( https://dev-traveler.tistory.com/31 )(2) 환경변수 설정 PATH에 Git 설치 경로를 등록해두어야 한다. 1. 가져오고 싶은 코드의 깃허브 주소 복사 2. 깃허브 코드를 받을 임시 폴더를 만든다. (나는 바탕화면에 생성했다.) 3. cmd 창을 연다.cd C:\Users\tange\OneDrive\바탕화면\"폴더명" 작성하여 생성한 폴더로 경로 세팅 후, git clone "복사한 URL" 로 작성하여 원격 저장소의 코드를 로컬 컴퓨터로 복제한다. * 만약 git clone "복사한 URL" 입력했을 때, 아래..

1. Git 다운로드 사이트에 접속한다.https://git-scm.com/downloads Git - DownloadsDownloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. Latest source Release 2.47.1 Release Notes (2024-11-25) Download Source Code GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but thergit-scm.com 2. Downloads 영역에 자신의 운영체제에 맞게 선택한다. 3. Standalone Installer ..