GitHub
Links
https://help.github.com/en/github/automating-your-workflow-with-github-actions/about-github-actions
https://help.github.com/en/github/managing-packages-with-github-packages
https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token
Setting up an ssh keygen
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
LINUX:
sudo apt-get install xclip
xclip -sel clip < ~/.ssh/id_rsa.pub
WINDOWS / GITBASH
clip < ~/.ssh/id_rsa.pub
MAC
pbcopy < ~/.ssh/id_rsa.pub
LINUX OTHER
cat ~/.ssh/id_rsa.pub
Github Setting page: https://github.com/settings/keys
chown -R $(whoami) .
- helpful for setting ownership