메뉴 닫기
Skip to main content
< All Topics
Print

Git Client Installation

Installing Git

Before you start using Git, you have to make it available on your computer. Even if it’s already installed, it’s probably a good idea to update to the latest version. You can either install it as a package or via another installer, or download the source code and compile it yourself.

Installing on Linux

If you want to install the basic Git tools on Linux via a binary installer, you can generally do so through the package management tool that comes with your distribution. If you’re on Fedora (or any closely-related RPM-based distribution, such as RHEL or CentOS), you can use dnf:

$ sudo dnf install git-all

If you’re on a Debian-based distribution, such as Ubuntu, try apt:

$ sudo apt install git-all

For more options, there are instructions for installing on several different Unix distributions on the Git website, at https://git-scm.com/download/linux.

Installing on Windows

There are also a few ways to install Git on Windows. The most official build is available for download on the Git website. Just go to https://git-scm.com/download/win and the download will start automatically. Note that this is a project called Git for Windows, which is separate from Git itself; for more information on it, go to https://gitforwindows.org.

To get an automated installation you can use the Git Chocolatey package. Note that the Chocolatey package is community maintained.

Download Windosw version git : https://git-scm.com/downloads/win

Download Linux version git : https://git-scm.com/downloads/linux

설치 시 옵션은 Default를 사용하여도 무방합니다.

Git 설치 후 개인정보 설정

Git를 설치하고 사용을 위해서는 다음 정보를 반드시 입력하여야 합니다.

Linux에서는 Terminal에서 작업을 수행합니다.

Windows에서는 Command 창에서 작업을 수행합니다.

git config --global user.name "Your Name"
git config --global user.email "you@your.domain"

입력한 내용을 확인하기 위해서는 다음 명령을 입력합니다.

git config --list

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

Table of Contents