Github
Pull Requests
Fork the Repository
Connect your local to the original “upstream” repository by adding it as a remote
Create a branch for your edits.
Links
Actions
GitHub Action for GitHub Push - GitHub Actions for pushing to GitHub repository local changes authorizing using GitHub token.
Issues
Braches
Commits
Secrets
Config
Deploy Key
ssh-keygen -t rsa -b 4096 -C "{email}"
cat .ssh/id_rsa.pub
ssh -T [email protected]
.git/config:
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[remote "origin"]
url = [email protected]:user/repo.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
Last updated
Was this helpful?