If you want to use git code repository :
Access address
Git code repository를 사용하고자 할 때
...
...
User registration
- https://data.kasi.re.kr/gitlab/users/sign_inin#register-pane (kasi 이메일 주소로만 등록 가능합니다)
제한 사항
- 현재 ssh 접근은 불가능하며, https 연결만 허용됩니다.
문제 해결
- only "kasi.re.kr" e-mail address is allowed)
Limitations
- Git repositories can only be accessed via https ( ssh access is NOT allowed currently)
Trouble shooting
In case of certificate errors via https access https로 접근할 때 (e.g., git push) 인증 오류가 나면 sslverify 옵션을 꺼주세요., turn off sslVerify option as follows :
Code Block language bash title FIX: https ssl error 대처 git config http.sslVerify false 또는OR git config --global http.sslVerify false
...