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 버전관리에서 제외할 파일 목록을 지정하는 파일이다. 용량이 크거나, 보안이 중요한 파일들을 보통 .gitignore안에 지정한다.
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 pair을 사용하면 매번 username과 password를 입력하지 않고도 자신을 인증할 수 있다. SSH key는 pair로 이루어져, github과 같은 리모트 머신에 위치하는 public key와, 로컬 머신에 저장되는 private key로 이루어진다. 두 키가 일치하면, 인증이 이루어진다. SSH는 누구도 public key로부터 private key를 reverse engineer해 알아낼 수 없도록 한다.