본문 바로가기

git

git 설치 및 다운로드 설정파일 정보 확인 사용자 등록

728x90
반응형

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-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp

git-scm.com

위의 사이트에서 자신의 OS에 맞는 git을 다운로드 한 후 설치하면된다.

 

설정파일 위치 및 정보 확인


 

시스템 전역 설정정보(macos)

git config --global --edit

 

gitconfig

> USER_HOME/.gitconfig

 
 

windows

C:\Users\{user}\.gitconfig

 

 

working directory

/directory/.git/config

 

 

사용자 정보 입력


git은 책임성을 유지하는 것이 중요한데 커밋한 사용자의 이름과 이메일을 반드시 입력해야 한다.

git config --global user.name heypli
git config --global user.email heypli@naver.com

default 사용자 정보가 입력된다.

[user]
    name = heypli
    email = heypli@naver.com

gitconfig파일에 정보가 등록된다.

 

728x90
반응형