Github

Pull Requests

  1. Fork the Repository

  2. Connect your local to the original “upstream” repository by adding it as a remote

  3. Create a branch for your edits.

Actions

Issues

Braches

Commits

Secrets

Config

Deploy Key

ssh-keygen -t rsa -b 4096 -C "{email}"
cat .ssh/id_rsa.pub

ssh -T git@github.com

.git/config:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = git@github.com:user/repo.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
        remote = origin
        merge = refs/heads/master

Using Github Deploy Key

Last updated