17 lines
483 B
Markdown
17 lines
483 B
Markdown
# Git 설치 (Windows)
|
|
- [홈페이지에서 Install파일 다운](https://git-scm.com/)
|
|
- Next연타하여 기본으로 설치
|
|
- CMD에서 "git"실행 여부 확인
|
|
|
|
[※설치참고](https://taewow.tistory.com/13)
|
|
|
|
- Chocolatey
|
|
> choco install git
|
|
|
|
- 설치후 SSL 적용
|
|
> C:\Users\[유저] 폴더에 .gitconfig 내용 수정
|
|
```gitconfig
|
|
[http]
|
|
sslCAInfo = C:/Program Files/Git/mingw64/ssl/certs/GMT_CA.crt
|
|
```
|
|
> git config --global http.sslCAInfo C:/Users/[유저]/ca-bundle.cr |