git branch 查看当前分支
git branch other 创建名为 other的分支
git add . 将当前文件所有文件添加到分支
git commit -m '注释’提交到分支
git push origin other 提交
git branch 查看当前分支
git branch other 创建名为 other的分支
git add . 将当前文件所有文件添加到分支
git commit -m '注释’提交到分支
git push origin other 提交