|
| 1 | +# Mobile-Friendly Branch Reorganization Guide |
| 2 | + |
| 3 | +## For Android/Mobile Users 📱 |
| 4 | + |
| 5 | +Since you're on Android, here are your options: |
| 6 | + |
| 7 | +--- |
| 8 | + |
| 9 | +## Option 1: GitHub Mobile Web (Easiest for Mobile) 🌐 |
| 10 | + |
| 11 | +1. **Open GitHub in your mobile browser** |
| 12 | + - Go to: https://github.com/SL-Mar/quantcoder-cli |
| 13 | + - Use **Desktop Site** mode for full features |
| 14 | + |
| 15 | +2. **Create Beta Branch** |
| 16 | + - Tap "main" dropdown → Find "refactor/modernize-2025" |
| 17 | + - Tap the ⋮ (three dots) next to branch name |
| 18 | + - Select "Rename branch" |
| 19 | + - Enter new name: `beta` |
| 20 | + - Confirm |
| 21 | + |
| 22 | +3. **Create Gamma Branch** |
| 23 | + - Tap "main" dropdown → Find "claude/refactor-quantcoder-cli-JwrsM" |
| 24 | + - Tap the ⋮ (three dots) next to branch name |
| 25 | + - Select "Rename branch" |
| 26 | + - Enter new name: `gamma` |
| 27 | + - Confirm |
| 28 | + |
| 29 | +4. **Done!** ✓ |
| 30 | + |
| 31 | +--- |
| 32 | + |
| 33 | +## Option 2: Use Termux (Android Terminal) 📟 |
| 34 | + |
| 35 | +If you have Termux installed: |
| 36 | + |
| 37 | +```bash |
| 38 | +# Install git |
| 39 | +pkg install git |
| 40 | + |
| 41 | +# Clone repo |
| 42 | +git clone https://github.com/SL-Mar/quantcoder-cli |
| 43 | +cd quantcoder-cli |
| 44 | + |
| 45 | +# Run reorganization script |
| 46 | +chmod +x reorganize-branches.sh |
| 47 | +./reorganize-branches.sh |
| 48 | +``` |
| 49 | + |
| 50 | +--- |
| 51 | + |
| 52 | +## Option 3: Wait for Computer Access 💻 |
| 53 | + |
| 54 | +The reorganization script is ready at: |
| 55 | +``` |
| 56 | +./reorganize-branches.sh |
| 57 | +``` |
| 58 | + |
| 59 | +When you have computer access: |
| 60 | +1. Clone the repository |
| 61 | +2. Run the script |
| 62 | +3. Done! |
| 63 | + |
| 64 | +--- |
| 65 | + |
| 66 | +## Current Status (What You Have Now) |
| 67 | + |
| 68 | +✅ **All code is complete and pushed** |
| 69 | +- Autonomous mode: ✓ |
| 70 | +- Library builder: ✓ |
| 71 | +- Documentation: ✓ |
| 72 | +- Version 2.0.0-alpha.1: ✓ |
| 73 | + |
| 74 | +✅ **Working locally with clean names** |
| 75 | +You can already use: |
| 76 | +```bash |
| 77 | +git checkout main # v1.0 |
| 78 | +git checkout beta # v1.1 |
| 79 | +git checkout gamma # v2.0 |
| 80 | +``` |
| 81 | + |
| 82 | +❌ **Remote branches have technical names** |
| 83 | +- `origin/main` |
| 84 | +- `origin/refactor/modernize-2025` (should be beta) |
| 85 | +- `origin/claude/refactor-quantcoder-cli-JwrsM` (should be gamma) |
| 86 | + |
| 87 | +--- |
| 88 | + |
| 89 | +## Why Can't Claude Do This? |
| 90 | + |
| 91 | +Claude's Git access is proxied with strict restrictions: |
| 92 | +- Can only push to branches matching: `claude/*-sessionID` |
| 93 | +- Cannot rename existing remote branches |
| 94 | +- You need full GitHub access (which you have!) |
| 95 | + |
| 96 | +--- |
| 97 | + |
| 98 | +## Questions? |
| 99 | + |
| 100 | +**Q: Is my code safe?** |
| 101 | +A: Yes! All v2.0 code is pushed to `origin/claude/refactor-quantcoder-cli-JwrsM` |
| 102 | + |
| 103 | +**Q: Can I use it now?** |
| 104 | +A: Yes! The branch names are just labels. All functionality works. |
| 105 | + |
| 106 | +**Q: What's the priority?** |
| 107 | +A: Low priority. Renaming is cosmetic - the code is complete and working. |
| 108 | + |
| 109 | +--- |
| 110 | + |
| 111 | +**Created:** 2025-12-15 |
| 112 | +**Repository:** https://github.com/SL-Mar/quantcoder-cli |
0 commit comments