Print list of branches
vcs branch is the same as vcs branch -l | --list
~ python vcs.py branch
Branches:
master
features
test
Total 3 branches
Create new branch
~ python vcs.py -n test
Branch test has been created
4 files were inherited
Remove branch by name
~ python vcs.py -d test
Branch test was successfully deletedvcs branch - Print list of branches
vcs branch -l | --list - Print list of branches
vcs branch -n | --new <branch_name> - Create new branch
vcs branch -d | --delete <branch_name> - Remove branchAuthor: Konstantin-create
Licence: GNU General Public License v3.0