Git 설치하기 [Git 사용해보기 1]
📌 Git 설치하기 1. Git 홈페이지 접속 https://git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gu
taenggu0-0ai.tistory.com
이전 글에서는 Git을 설치하는 방법에 대해 설명하였습니다. 만약 Git이 깔려있지 않다면 이전글 먼저 봐주시기 바랍니다.
📌 Git 사용하기
1. 사용자 등록하기
git config --global user.name "사용자이름"
git config --global user.email "사용자이메일@...com"
2. 사용자 등록이 됐는지 확인하기
git config --list
3. cmd 창에서도 확인해보기
CMD 창에서도 git을 입력 했을때 위와 같은 결과가 나온다면, 설치가 잘 됐고 환경 변수 설정 성공~!