세상을 이롭게

Git 사용해보기 01.git Bash 설치 본문

Git

Git 사용해보기 01.git Bash 설치

2022. 7. 20. 21:52

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

unix 환경에서 console 창으로 명령어를 날리듯 git에 특화되어있는 CommandLine Tool 이다.

https://git-scm.com/book/ko/v2/%EC%8B%9C%EC%9E%91%ED%95%98%EA%B8%B0-Git-%EC%B5%9C%EC%B4%88-%EC%84%A4%EC%A0%95

 

Git - Git 최초 설정

Vim과 Emacs, Notepad++은 꽤 인기 있는 편집기로 개발자들이 즐겨 사용한다. Mac이나 Linux 같은 Unix 시스템, Windows 시스템에서 사용 가능하다. 여기서 소개하는 편집기들이 불편해서 다른 편집기를 사

git-scm.com

아래의 과정은 위의 링크를 따른다.

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

본인의 환경에 맞게 다운하도록 한다.

초기화면

본인이 github, gitLab 등 에서 사용한 이름과 이메일을 입력해준다.
만약 없다면 본인이 사용하기 편한 곳에서 회원가입 후 진행한다.

git config --global user.name "Name"
git config --global user.email "E-mail"

아래의 명령어를 통해 제대로 등록되었는지 확인한다.

git config --list

잘 등록되었다.