From ecfc592e68ad5441bf1f30515927fe36bc02bcaf Mon Sep 17 00:00:00 2001 From: minjae Date: Fri, 9 Apr 2021 01:21:51 +0900 Subject: [PATCH] homework5 --- homework5.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/homework5.txt b/homework5.txt index cef63bb..7a133b5 100644 --- a/homework5.txt +++ b/homework5.txt @@ -1,3 +1,7 @@ 0. What is your name and student ID? +신민재 2020-13156 1. What is .gitignore? You can write the answer either in Korean or English. -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. \ No newline at end of file +.gitignore은 git add . 을 통해 변경된 파일을 전체 입력하면 원하지 않는 파일도 같이 업로드 되기에 .gitignore 디렉토리를 만들어 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. +SSH는 두 컴퓨터 간 통신이 가능하게 하는 하나의 protocol이다. SSH를 통해 host와 client사이의 암호화된 통신이 가능한데 server(host)에는 public key가 존재하고 client에는 private key가 존재한다. 이 두 가지 종류의 key를 이용하여 원격으로 접속 가능하다.다른말로 표현하면 public key를 통해 암호화된 문장을 private key를 이용하여 복호화하는 방식으로 파일을 읽을 수 있다. +