Branches let you take a snapshot of your data, experiment freely, and merge the results back without affecting the original. The commands map closely to git.Documentation Index
Fetch the complete documentation index at: https://docs.oxen.ai/llms.txt
Use this file to discover all available pages before exploring further.
Create a Branch
Create a new branch and check it out in one step withoxen checkout -b.
List Branches
To list the branches in your repository (highlighting the one youβre on), useoxen branch.
--remote.
oxen branch --delete. This fails if the branch has changes that havenβt been merged.
-D to force-delete a branch.
Switch Between Branches
Useoxen checkout to switch branches. This restores the working directory to the HEAD commit of the branch youβre checking out.
Merge Branches
Merge another branch into your current branch withoxen merge. This creates a merge commit, or fails if there are conflicts to resolve.
