Adding instructions for stable branch.
This commit is contained in:
parent
34a51ec362
commit
8e2e8aa05e
@ -149,7 +149,7 @@ Test these things using both the UI and the MCP server. This process will be sim
|
|||||||
- This creates your own copy of the repository
|
- This creates your own copy of the repository
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone your fork (replace 'your-username' with your GitHub username)
|
# Clone your fork from main branch for contributing (replace 'your-username' with your GitHub username)
|
||||||
git clone https://github.com/your-username/archon.git
|
git clone https://github.com/your-username/archon.git
|
||||||
cd archon
|
cd archon
|
||||||
|
|
||||||
@ -157,6 +157,8 @@ Test these things using both the UI and the MCP server. This process will be sim
|
|||||||
git remote add upstream https://github.com/coleam00/archon.git
|
git remote add upstream https://github.com/coleam00/archon.git
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Note:** The `main` branch is used for contributions and contains the latest development work. The `stable` branch is for users who want a more tested, stable version of Archon.
|
||||||
|
|
||||||
2. **🤖 AI Coding Assistant Setup**
|
2. **🤖 AI Coding Assistant Setup**
|
||||||
|
|
||||||
**IMPORTANT**: If you're using AI coding assistants to help contribute to Archon, set up our global rules for optimal results.
|
**IMPORTANT**: If you're using AI coding assistants to help contribute to Archon, set up our global rules for optimal results.
|
||||||
@ -169,7 +171,7 @@ Test these things using both the UI and the MCP server. This process will be sim
|
|||||||
|
|
||||||
3. **Create Feature Branch**
|
3. **Create Feature Branch**
|
||||||
|
|
||||||
**Best Practice**: Always create a feature branch rather than working directly on main. This keeps your main branch clean and makes it easier to sync with the upstream repository.
|
**Best Practice**: Always create a feature branch from main rather than working directly on it. This keeps your main branch clean and makes it easier to sync with the upstream repository.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git checkout -b feature/your-feature-name
|
git checkout -b feature/your-feature-name
|
||||||
|
|||||||
@ -54,11 +54,13 @@ This new vision for Archon replaces the old one (the agenteer). Archon used to b
|
|||||||
|
|
||||||
1. **Clone Repository**:
|
1. **Clone Repository**:
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/coleam00/archon.git
|
git clone -b stable https://github.com/coleam00/archon.git
|
||||||
```
|
```
|
||||||
```bash
|
```bash
|
||||||
cd archon
|
cd archon
|
||||||
```
|
```
|
||||||
|
|
||||||
|
**Note:** The `stable` branch is recommended for using Archon. If you want to contribute or try the latest features, use the `main` branch with `git clone https://github.com/coleam00/archon.git`
|
||||||
2. **Environment Configuration**:
|
2. **Environment Configuration**:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user