unison/unison-src/transcripts/delete-project-branch.md
2024-07-03 11:21:59 -07:00

882 B

Deleting the branch you are on takes you to its parent (though this is impossible to see in a transcript, since we set your working directory with each command).

foo/main> branch topic
foo/topic> delete.branch /topic

A branch need not be preceded by a forward slash.

foo/main> branch topic
foo/topic> delete.branch topic

You can precede the branch name by a project name.

foo/main> branch topic
scratch/main> delete.branch foo/topic

You can delete the only branch in a project.

foo/main> delete.branch /main

You can delete the last branch in the project, a new one will be created.

scratch/main> delete.branch scratch/main
scratch/main> branches

If the the last branch isn't /main, then /main will be created.

scratch/main2> delete.branch /main
scratch/main2> delete.branch /main2
scratch/other> branches