Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 545 Bytes

File metadata and controls

11 lines (9 loc) · 545 Bytes

Rebase forked repo with original repo

  1. git remote add upstream https://github.com/original-repo/goes-here.git
  2. git fetch upstream
  3. git rebase upstream/master
  4. git push origin master [--force]

Add ssh key to account

  1. ssh-keygen -t ed25519 -C "your_email@example.com"
  2. cat ~/.ssh/id_ed25519.pub
  3. Log in to your GitHub account, navigate to "Settings" -> "SSH and GPG keys", and add a new SSH key, pasting the copied public key content.