Update README and documentation index for v0.3.2 release
- Simplify root README to focus on implemented features and quick navigation - Replace verbose project structure with concise feature list - Remove recent achievements section (moved to release notes) - Add direct links to master index and main documentation - Update MASTER_INDEX.md to focus on documentation catalog - Remove project completion status (moved to release notes) - Remove learning path sections (kept in individual path
This commit is contained in:
@@ -212,6 +212,20 @@ echo "Gitea-Runner: $(ssh gitea-runner 'cd /opt/aitbc && git rev-parse --short H
|
||||
### 8. Push to GitHub (Milestone Only)
|
||||
```bash
|
||||
# Only push to GitHub for milestones (releases, major features)
|
||||
# First verify local changes are pushed to Gitea
|
||||
LOCAL_HASH=$(git rev-parse HEAD)
|
||||
ORIGIN_HASH=$(git rev-parse origin/main)
|
||||
|
||||
if [ "$LOCAL_HASH" != "$ORIGIN_HASH" ]; then
|
||||
echo "❌ Local changes not pushed to Gitea"
|
||||
echo "Local: $LOCAL_HASH"
|
||||
echo "Origin: $ORIGIN_HASH"
|
||||
echo "Push to Gitea first: git push origin main"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✅ Local changes already pushed to Gitea"
|
||||
|
||||
# Verify all three nodes are in sync before GitHub push
|
||||
GENESIS_HASH=$(git rev-parse HEAD)
|
||||
FOLLOWER_HASH=$(ssh aitbc1 'cd /opt/aitbc && git rev-parse HEAD')
|
||||
|
||||
Reference in New Issue
Block a user