Skip to content

Instantly share code, notes, and snippets.

View maylortaylor's full-sized avatar

Matt Taylor maylortaylor

View GitHub Profile
## Git Flow Using Rebase
At a high-level, the workflow can be described in a few steps:
1. Fetch upstream changes.
* Always be working with the latest version of the codebase
```bash
git fetch upstream
```