Contribute to an existing repository

PHOTO EMBED

Tue Nov 29 2022 16:09:47 GMT+0000 (Coordinated Universal Time)

Saved by @chelobotix #contributeto an existing repository #github

# download a repository on GitHub to our machine
# Replace `owner/repo` with the owner and name of the repository to clone
git clone https://github.com/owner/repo.git

# change into the `repo` directory
cd repo

# create a new branch to store any new changes
git branch my-branch

# switch to that branch (line of development)
git checkout my-branch

# make changes, for example, edit `file1.md` and `file2.md` using the text editor

# stage the changed files
git add file1.md file2.md

# take a snapshot of the staging area (anything that's been added)
git commit -m "my snapshot"

# push changes to github
git push --set-upstream origin my-branch
content_copyCOPY

Contribute to an existing repository