如何使用git批量删除分支

当我们开发久了之后本地会留下许多不用的分支,逐条删除太浪费时间,可用批量删除,
git branch |grep ‘xxx’|xargs git branch -D

例如:
git批量删除分支
git批量删除分支
git批量删除分支
参考https://www.jianshu.com/p/1fb0adf2000e

相关文章:

  • 2022-12-23
  • 2021-07-11
  • 2022-03-05
  • 2021-11-22
  • 2021-08-12
  • 2021-10-03
  • 2021-08-11
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2022-01-17
  • 2022-12-23
相关资源
相似解决方案