Document git remote configuration with dual push targets
This commit is contained in:
parent
0d5d2c27be
commit
ddf071161e
2 changed files with 19 additions and 0 deletions
13
CLAUDE.md
13
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 <noreply@anthropic.com>" to commit messages
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue