标签:round rip back color 并行 java asc span 自动
有时候我们开发需要开一个分支,这样可以有效的并行开发.
开分支有两种方式:
git checkout -b feature-branch origin/feature-branch //检出远程的feature-branch分支到本地
$ git checkout -b feature-branch //创建并切换到分支feature-branch
$ git push origin feature-branch:feature-branch //推送本地的feature-branch(冒号前面的)分支到远程origin的feature-branch(冒号后面的)分支(没有会自动创建)
标签:round rip back color 并行 java asc span 自动
原文地址:https://www.cnblogs.com/cyl048/p/10245778.html