From 65df5f9809056a704a0925894100f3379ac28db6 Mon Sep 17 00:00:00 2001 From: Daniel Shanklin Date: Mon, 26 Jan 2026 00:00:15 -0600 Subject: [PATCH] Remove fork workflow section from README The fork workflow documentation contained personal fork references that shouldn't be in the upstream repository. Co-Authored-By: Claude Opus 4.5 --- README.md | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/README.md b/README.md index 6d7b3fb..a336e27 100644 --- a/README.md +++ b/README.md @@ -174,34 +174,3 @@ space_hog/ MIT -## Fork Workflow - -This repo is a fork of [rhea-impact/space-hog](https://github.com/rhea-impact/space-hog). - -**Remotes:** -``` -origin → dshanklin-bv/space-hog (this fork) -upstream → rhea-impact/space-hog (public source) -``` - -**Sync from upstream:** -```bash -git fetch upstream -git merge upstream/main -git push origin main -``` - -**Push fixes to upstream:** -```bash -# Create a branch for your fix -git checkout -b fix/my-fix - -# Make changes, commit -git add -A && git commit -m "Fix: description" - -# Push to your fork -git push origin fix/my-fix - -# Create PR on GitHub: dshanklin-bv/space-hog → rhea-impact/space-hog -gh pr create --repo rhea-impact/space-hog --head dshanklin-bv:fix/my-fix -```