6개월간의 국비지원 수업을 듣고 다양한분들과의 협업을 통하여 만든 프로젝트에 대해 하지 못했던 것 들과 부족했던 점들을 수정하기 위해 clone을 하려한다.
만약 SSH 키가 없을경우 안되기 때문에 만들고 만들기 위해서는
$ cd ~/.ssh
$ ls
만약 없다면?
$ ssh-keygen -t ed25519 -C "your_email@example.com"
$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
$ ssh-keygen -t ed25519 -C "lainyzine.com@gmail.com"
Generating public/private ed25519 key pair.
Enter file in which to save the key (/Users/lainyzine/.ssh/id_ed25519):
Your identification has been saved in /Users/lainyzine/.ssh/id_ed25519.
Your public key has been saved in /Users/lainyzine/.ssh/id_ed25519.pub.
The key fingerprint is:
SHA256:MRR2EWPjezAxwlrxCgfqjq43CJjtZVl8Heo5YU/912I lainyzine.com@gmail.com
The key's randomart image is:
+--[ED25519 256]--+
| ..*oXo |
| . +o*.= |
| ...o+o=o |
| . +o=+o+. |
|.o .o +S=. .. .|
|+ .o+ + .. E o|
|.o.o. . . o |
|..+ |
|.o.. |
+----[SHA256]-----+
이런식으로 생성이된다. 그이후
$ cat id_ed25519.pub
를 검색하여 나온 값을
이곳에 붙여넣기하면 된다. 다시 돌아와서
cd your.git
vi test.txt
git add .
git commit -m "문서작성"
하면 완료이다!
소중한 정보 잘 봤습니다!