Myo-Kyeong Tech Blog

[ Git / GitHub ] Git 과 GitHub repository 연동① - Windows 10 에 Git 설치 본문

Git

[ Git / GitHub ] Git 과 GitHub repository 연동① - Windows 10 에 Git 설치

myo-kyeong 2023. 5. 25. 19:14
728x90
반응형

 

Git  설치하기

 

https://git-scm.com/download/win

 

Git - Downloading Package

Download for Windows Click here to download the latest (2.40.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 30 days ago, on 2023-04-25. Other Git for Windows downloads Standalone Installer 32-bit Git for Win

git-scm.com

 

Git  버전 확인 

 

설치가 완료되면 터미널을 열고 'git --version' 명령어를 입력하여 정상적으로 설치되었는지 한번 확인해주세요!

git --version

 

 

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

 

 

Git  설정하기

 

터미널을 열고 아래의 명령어를 입력하여 기본 사용자 정보를 설정합니다. 이 설정은 커밋할 때 사용되는 정보입니다.

git config --global user.name "Your Name"
git config --global user.email "your-email@example.com"

 

※ 주의 - GitHub랑 연결하려면 GitHub 만들때 입력한 username, usermail을 잘 입력해주셔야 나중에 github로 코드 올릴 때 잔디 심어져요!!! 

 

입력 잘 되었는지  다시 한번 확인하기 

git config --list

 

728x90
반응형