Git 다운로드
2020. 1. 2. 18:00ㆍSTUDY/WEB
1. Git 설치 확인
이미 Git이 설치되었는지 & 버전 확인
> git --version
2. 다운로드
Git - Downloads
Downloads Mac OS X 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
git-scm.com
- 설치 중간에 기본 에디터를 설정하는 부분이 있습니다.
- 그 외는 기본 버전으로 체크하였습니다.
3. 환경설정 (터미널)
> git config --global user.name "이름"
> git config --global user.email "이메일"
4. 환경설정 확인
> git config --list
'STUDY > WEB' 카테고리의 다른 글
[Javascript ] Promise All (0) | 2020.04.06 |
---|---|
[Vue.js] 로그인 여부 확인 (0) | 2020.03.27 |
[Javascript/jQuery] 문자열 공백체크, 공백제거 (0) | 2020.03.04 |