1. vscode update notice 1.72

Link Materi

2. Github Profile

Github Profile Generator

3. How To Use Github on Public(Shared Computer) Safely

A. Email

Official Documentations

email_privacy

B. Github SSH

Official Documentations

Tutorial Video

Tutorial Video

  1. Melihat SSH key yang tersimpan
ls -al ~/.ssh
  1. Generate SSH-Key
ssh-keygen -t ed25519 -C "your_email@example.com"

Masukan sesuai E-Mail yang dipakai di Github

  1. Tekan Enter (Pilihan untuk directory SSH secara default /home/YOU/.ssh/)
> Enter a file in which to save the key (/home/YOU/.ssh/ALGORITHM):[Press enter]
  1. Masukan Passphrase (Password Sebagai Pengamanan Tambahan)
> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]
  1. Menambahkan SSH-Key ke SSH-agent

memulai ssh-agent

eval "$(ssh-agent -s)"

menambahkan ssh key

ssh-add ~/.ssh/id_ed25519
  1. Tambahkan SSH key ke github

materi

Settings>SSH and GPG keys

  1. Test SSH-Key
ssh -T git@github.com