git分支的新建与合并

新建分支 首先,我们假设你正在你的项目上工作,并且已经有一些提交。 $ git checkout -b iss53 Switched to a new branch "iss53" 它是下面两条命令的简写: $ git branch iss53 $ git checkout iss53 $ vim index.html $ git commit -a -m 'added a new footer
相关文章
相关标签/搜索