본문 바로가기
프로그래밍언어/패턴, 알고리즘, 프로토콜

Git Windows 설치

by plog 2024. 11. 14.

Git 설치

버전 관리 시스템의 필수 도구인 Git을 윈도우에 설치하는 방법에 대해 알아보겠습니다. Git을 사용하면 개발 과정에서 발생하는 코드 변경 내역을 효과적으로 관리하고, 팀원들과 협업을 원활하게 할 수 있습니다.

 

Git 설치방법

1. 다운로드

 

Git - Downloads

Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. Latest source Release 2.47.0 Release Notes (2024-10-06) Download Source Code GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but ther

git-scm.com

윈도우 환경에 맞는 버전을 설치 하면 됩니다.  저는 64-bit Git for Windows Setup. 

 

2. 윈도우 공식 설치 가이드

 

Git - GUI Clients

GUI Clients Git comes with built-in GUI tools for committing (git-gui) and browsing (gitk), but there are several third-party tools for users looking for platform-specific experience. If you want to add another GUI tool to this list, just follow the instru

git-scm.com

 

3. 기본 Git 명령 예시
git init: 새로운 Git 저장소를 초기화합니다.
git clone: 기존 Git 저장소를 복제합니다.
git add: 변경된 파일을 스테이징 영역에 추가합니다.
git commit: 스테이징 영역에 있는 변경 사항을 커밋합니다.
git push: 로컬 저장소의 변경 사항을 원격 저장소로 업로드합니다.
git pull: 원격 저장소의 변경 사항을 로컬 저장소로 가져옵니다.

 

댓글