首页 > 代码库 > Git 操作分支

Git 操作分支

    新建分支:

git checkout -b v0.1

 

    提交新建的分支内容

git add index.html

git commit -m ‘modify index page‘

 

Git 操作分支