Skip to content

Instantly share code, notes, and snippets.

@rjdmoore
rjdmoore / GitHub-Forking.md
Last active October 20, 2020 21:47 — forked from Chaser324/GitHub-Forking.md
GitHub Standard Fork & Pull Request Workflow

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your repo or just head straight to the command line:

# Clone your fork to your local machine
git clone git@github.com:USERNAME/FORKED-PROJECT.git

Keeping Your Fork Up to Date