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.
