Commonly used command

Published on
1 mins read
––– views

Create SSH key for github

You need to install Git before start

ssh-keygen -t ed25519 -C "your_email@example.com"

Note: If you are using a legacy system that doesn't support the Ed25519 algorithm, use:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Fix error 'ps1 cannot be loaded because running scripts is disabled on this system'

Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted