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에서 add를 하고싶지 않거나 무시하고 싶은 파일들이 있을 때, 파일을 관리 대상에서 제외할 떄 쓰는 파일>이다.
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.
사용자의 컴퓨터와 github를 연결시키기 위하여
먼저 ssh-keygen ~~를 통해 사용자의 repo의 키를 형성한다. 이후 패스워드를 친 다음, ce ~/.ssh, cat id_rsa.pub를 통해 키를 보여주고, eval~~, ssh-add ~~ 코드를 통해 키를 agent로 옮기게 된다.