본문 바로가기
> 메모/GitHub

[깃] Git 설치 및 설정 및 이름 변경

by 자몽주스 2024. 6. 16.
728x90
반응형

참고 블로그 사이트: 

https://code-lab1.tistory.com/249#google_vignette

 

[Git] 윈도우10(window 10) 깃(Git) 설치하기 - Git 기초(0.5)

윈도우 10(Window 10) 깃(Git) 설치하기 1. Git 설치 파일 다운로드 윈도우 10에서 깃은 공식 홈페이지에서 다운로드할 수 있다. https://git-scm.com/downloads Git - Downloads Downloads macOS Windows Linux/Unix Older releases

code-lab1.tistory.com


상단의 Click Here to Downlaod 눌러서 설치.

설정 이대로 하고 Next

 

다 Next 하고 install 해주면 됨.


설정하기 
git config --global user.name "사용자이름"
git config --global user.email "사용자이메일@...com"
설정 잘 됐는 지 확인하기 
git config --list

사용자 이름  바꾸고 싶은 경우
Git Bash 열기
git config --global user.name "새로운사용자이름"

새로운 이름 기입

- name 오른쪽에 띄어쓰기 해야 변경됨.

변경 확인하기
git config user.name
728x90
반응형