From: Chuck Lever Date: Thu, 6 Oct 2005 12:56:42 +0000 (+0100) Subject: Rudimentary support for multiple development branches X-Git-Tag: v0.8~65 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/stgit/commitdiff_plain/7b1ba1a6f8c89f551377b3b3791bfee7b01d3350?ds=inline;hp=7b1ba1a6f8c89f551377b3b3791bfee7b01d3350 Rudimentary support for multiple development branches stg branch show the name of the current branch. stg branch switch to the named branch. after the switch is complete, all currently applied patches in the target branch are applied. stg branch --create [ ] create a new branch. if is not specified then the branch is created starting at the commit pointed to by the current HEAD. otherwise, the branch is created starting at the given commit. when the branch creation completes, the new branch becomes the current branch. stg branch --delete [ ] delete a branch and all patches it contains. if no name is specified, delete the current branch and switch to the "master" branch. otherwise, delete the named branch. stg branch --list list all the development branches in the current repository along with their descriptions and status. stg branch --rename rename a branch, and switch to the new name. stg branch -h print a synopsis of the "stg branch" command. Signed-off-by: Chuck Lever ---