console - 설치

윈도우에 설치

Git을 윈도우에 설치하기도 쉽다. 그저 구글 코드 페이지에서 msysGit 인스톨러를 내려받고 실행하면 된다:

http://msysgit.github.io/

설치가 완료되면 CLI 프로그램과 GUI 프로그램을 둘 다 사용할 수 있다. CLI 프로그램에는 SSH 클라이언트가 포함돼 있기 때문에 유용하다.

설정

사용자 정보를 입력

git config --global user.name "John Doe"
git config --global user.email [email protected]

설정 값을 잘 저장했는지 확인하려면 git config 명령어에 --list 매개변수를 이용한다.

$ git config --global --list
user.name=mypmk
[email protected]

user.name과 user.email은 반드시 설정해야 하는 값이다.

results matching ""

    No results matching ""