You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. What is .gitignore? You can write the answer either in Korean or English.
프로젝트에 원하지 않은 파일들을 git에서 제외시킬 수 있는 설정에 관한 파일이다.
2. Why do Github users need an SSH key pair? (Users can use either SSH key pair or github account info.) Please write down a brief explanation of SSH key.
SSH key는 서버에 접속할 때 비밀번호 대신 key를 제출하는 방식으로, 로그인 없이 자동으로 서비에 접속하면서도 비밀번호보다 높은 보안성을 가졌다는 것이 장점이다.
보안 방식은 서버에 public key가 있고 로컬 머신에 private key가 있어서 접속시 두 key를 비교하여 로컬 머신이 적합한지 확인하는 방식이다.