Git - Downloading Package (git-scm.com)
Git - Downloading Package
Download for Windows Click here to download the latest (2.42.0) 32-bit version of Git for Windows. This is the most recent maintained build. It was released about 2 months ago, on 2023-08-30. Other Git for Windows downloads Standalone Installer 32-bit Git
git-scm.com
위의 사이트에서 자신의 컴퓨터에 맞게 설치를 하도록 한다. (Click here to download 클릭)
Git을 설치하고 싶은 곳으로 원하는 경로를 지정해주고나서
Add a Git Bash Profile to Windows Terminal 부분을 체크해주도록 한다.
이는 Bash Profile을 윈도우 터미널에 추가할 것인지를 뜻한다.
위의 사진은 Git을 사용한 기본 에디터를 선택하는 창이므로 원하는 에디터로 정하면 된다.
아래 부분으로 체크해준 후 main으로 작성한다.
이후의 내용은 변동없이 기본값으로 쭉 체크하여 설치한다.
마지막에 View Release Notes를 선택 해제한 후 끝낸다.
그렇다면 이제 Git이 잘 설치가 되었는지 확인해보자.
git
git 명령어를 통해 Git이 잘 설치되었는지 확인할 수 있다.
GitHub: Let’s build from here · GitHub
GitHub: Let’s build from here
GitHub is where over 100 million developers shape the future of software, together. Contribute to the open source community, manage your Git repositories, review code like a pro, track bugs and fea...
github.com
위의 GitHub 사이트에서 회원가입을 했다면 아래와 같이 사용자를 등록해줘야 한다.
git config --global user.name "이름"
git config --global user.email "이메일 주소"
git status
위 과정을 전부 따라 왔다면 Git 설치 완료⭐
'Git' 카테고리의 다른 글
[Git] IntelliJ에서 생성한 프로젝트 깃에 올리기 (0) | 2023.11.03 |
---|