From ddf071161e48d145e9d879313c05457dd77bf1dd Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sun, 11 Jan 2026 07:14:12 -0500 Subject: [PATCH] Document git remote configuration with dual push targets --- CLAUDE.md | 13 +++++++++++++ README.rst | 6 ++++++ 2 files changed, 19 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index 21d40ca..a352624 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -1,5 +1,18 @@ # Claude Instructions +## Git Remotes + +This repository has multiple push targets configured on the `origin` remote: +- **GitHub**: `git@github.com:russellballestrini/opencompletion.git` (fetch & push) +- **Unturf**: `ssh://git@git.unturf.com:2222/engineering/unturf/opencompletion.com.git` (push only) + +When you `git push origin main`, changes are pushed to both remotes simultaneously. + +To verify remote configuration: +```bash +git remote -v +``` + ## Commit Messages - NEVER add Claude attributions like "🤖 Generated with Claude Code" to commit messages - NEVER add "Co-Authored-By: Claude " to commit messages diff --git a/README.rst b/README.rst index 128e87a..77de83a 100644 --- a/README.rst +++ b/README.rst @@ -45,6 +45,12 @@ To set up the project, follow these steps: git clone https://github.com/russellballestrini/opencompletion.git cd opencompletion + **Git Remotes**: This repo is configured to push to both GitHub and Unturf simultaneously. + The ``origin`` remote has two push URLs: + + - GitHub: ``git@github.com:russellballestrini/opencompletion.git`` + - Unturf: ``ssh://git@git.unturf.com:2222/engineering/unturf/opencompletion.com.git`` + 2. Create a virtual environment and activate it:: python3 -m venv env