Destroy every enemy base. Your base must survive. Enemies are red/orange/purple; you and your allies share the player team.
git checkout -b plan1 creates and switches to a planning branch.create soldier 3, attack, defend.git add stages your planned actions.git commit -m "rush" saves the plan as a commit.git checkout main then git merge plan1 executes the plan in the real world.Tip: nothing happens in the world until a commit is merged into main.
Your repo is local. Allies push their plans to origin/<ally>. To use an ally's plan:
git fetch — see what allies have pushed.git pull ally1 — merge origin/ally1 into your current branch.git push — publish your branch to the remote (optional, for show).create <unit> [count] — queue unit builds (worker, fast_worker, heavy_worker, soldier, archer, defender, knight).attack — order all units to assault the nearest enemy base.defend — order all units to fall back and guard your base.git init, git status, git log --onelinegit branch <name>, git checkout [-b] <name>git add, git commit -m "msg", git merge <branch>git push, git fetch, git pull <branch>git help in the terminal for the full list.Builds always combine. Conflicts only happen when two branches give opposing tactical orders (one says attack, the other defend). A modal will let you pick which order wins per branch.
Owner color = team. Inner dot color = unit role.