Skip to main content

이 버전의 GitHub Enterprise Server는 다음 날짜에 중단됩니다. 2026-08-25. 지원되지 않는 릴리스는 지원되지 않습니다. 중요한 보안 문제에 대해서도 패치 릴리스가 이루어지지 않습니다. GitHub Enterprise Server의 향상된 성능, 향상된 보안 및 새로운 기능은 업그레이드 프로세스의 오버뷰 참조하세요. 업그레이드에 대한 도움이 필요하면 GitHub Enterprise 지원에 문의하세요.

Connecting to your code locally

Connect GitHub Desktop to your account and clone your repository to edit files locally.

So far, you've worked in the browser. In this tutorial, you'll use GitHub Desktop to clone your repository to your computer so you can edit files in your own code editor.

참고

이 시리즈를 따라 진행하는 동안 데이터 보존 기능을 갖춘 GitHub Enterprise Cloud 또는 GitHub Enterprise Server을 사용하는 경우, GitHub.com에 대한 참조 및 링크를 조직의 전용 URL로 대체해야 합니다.

Prerequisites

Installing GitHub Desktop

If you don't have GitHub Desktop yet, install it before you continue. Download GitHub Desktop.

GitHub Docs contains documentation for all of GitHub's plans, and where relevant, tools and operating systems. To find content that matches your setup, use the Version dropdown in the top left corner of an article to select your plan, and select the tool or operating system tabs below the article's introduction.

Signing in to GitHub Desktop

Sign in so that GitHub Desktop can access your repositories.

  1. Open GitHub Desktop.
  2. From the welcome screen, click Sign in to GitHub Enterprise.
  3. Follow the prompts to authenticate with your GitHub account and authorize the app.
  4. Follow the steps to configure Git with your name and email address, which will be used for commits you make in GitHub Desktop.

If you don't see the welcome screen, follow the steps in GitHub Desktop에서 기본 설정 구성하기 to sign in and manage your settings from the GitHub Desktop menu.

Cloning your repository

Cloning creates a copy of your repository on your computer that stays connected to the version on GitHub.

  1. From the "Let's get started!" screen, select stargazers-log from the list of "Your repositories".
  2. Directly below the repositories list, click Clone OWNER/stargazers-log, where OWNER is your GitHub personal account.
  3. Accept the default repository URL and local path, and click Clone.

If you don't see the "Let's get started!" screen, follow the steps in Cloning a repository to clone your stargazers-log repository.

Opening your code in an editor

With your repository cloned, open it in a code editor to start working on the files.

  1. In GitHub Desktop, select Repository, then click Open in EDITOR.

    • If you haven't set an editor yet, install one such as Visual Studio Code (VS Code), then choose it in the Advanced section of GitHub Desktop settings.
  2. Confirm that you can see your index.html and README.md files in the editor.

What you accomplished

TaskOutcome
Signed in to GitHub DesktopYou connected GitHub Desktop to your account.
Cloned your repositoryYou created a local copy of stargazers-log on your computer.
Opened your codeYou opened the website files in a code editor, ready to make changes.

Next steps

  • Now that your code is on your computer, build the first feature for your website. Continue to 코드 작성 및 저장.