Skip to content

Instantly share code, notes, and snippets.

View maylortaylor's full-sized avatar

Matt Taylor maylortaylor

View GitHub Profile
@maylortaylor
maylortaylor / nicole-coming-soon.html
Created May 23, 2026 00:17
Nicole Estima — Coming Soon maintenance page
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Nicole Estima — Coming Soon</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet" />
<style>
## 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
```