Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2020-15966 #64

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion homework5.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
0. What is your name and student ID?
>>> yewon jeong, 2020-15966.

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.
>>> The .gitignore file is a text file that tells git which files or folders to ignore in a project.

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.
>>> An SSH key is an alternate way to identify ourselves that doesn't require us to enter us username and password everytime. Because we'll often need to identify ourselves to Github, we use SSH key instead of username, password.
SSH keys come in pairs, a public key and a private key. If the keys match, we're granted access.