«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

Code IT

기본 설정 본문

Git

기본 설정

Codit 2015. 6. 30. 15:48

 

  이전 포스팅에서 설치한 Bash를 실행하면 아래 그림과 같은 화면이 실행됩니다. 

 

Git을 사용하기전에 기본적인 설정을 먼저 해야합니다.

 

1. 사용자 이름과 메일 주소 설정

git config --global user.name "Firstname LastName"

git config --global user.email "your_email@example.com "

 

 

2. TextColor 설정

git config --global color.ui auto

 

 기본설정이 끝났습니다. 간단하죠? 설정한 내용은 다음 명령어를 통해서 확인이 가능합니다.

cat ~/.gitconfig

 

'Git' 카테고리의 다른 글

협업을 위한 Git Repository Clone / Commit / Push 하기  (0) 2015.07.03
Repository 생성하기  (0) 2015.07.02
SSH Key 설정하기  (2) 2015.07.02
GitHub 사용을 위한 Git Bash 설치  (0) 2015.06.30
GitHub 등록하기  (2) 2015.06.28
Comments