软件测试Python接口测试自动化测试之路

python学习科普--git分支管理

2020-02-28  本文已影响0人  orange_ade
分支管理
$ git branch
  iss53
* master
  testing
$ git branch -v
  iss53   93b412c fix javascript issue
* master  7a98805 Merge branch 'iss53'
  testing 782fd34 add scott to the author list in the readmes
$ git branch --merged
  iss53
* master
$ git branch --no-merged
  testing
$ git branch -d testing
error: The branch 'testing' is not fully merged.
If you are sure you want to delete it, run 'git branch -D testing'.
上一篇下一篇

猜你喜欢

热点阅读