Skip to main content
  1. Learn center
  2. Software Development
  3. Guides
  4. Git tutorial
  5. Git 사용 방법
  6. 명령줄에서 Git을 사용하는 방법
  7. 로컬 저장소 생성
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

로컬 저장소 생성

이제 로컬 저장소를 만들고 이 자습서의 나머지 부분에서 사용할 수 있도록 Git 버전 제어 아래에 두겠습니다.

컴퓨터의 어느 위치에나 이 새 디렉터리를 만들 수 있습니다. 이름을 "tutorial"로 지정하면 됩니다.

디렉터리에 액세스하고 git init 명령 을 사용하여 새 tutorial 디렉터리를 로컬 Git 저장소로 전환합니다.

$ mkdir tutorial
$ cd tutorial
$ git init
  Initialized empty Git repository in /Users/yourname/Desktop/tutorial/.git/

이제 저장소에 파일을 커밋할 준비가 되었습니다.

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life