0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

大量のgit branch を断捨離するなら

Last updated at Posted at 2019-10-04

#過去のbranchを漁りたいのに...

$ git branch
feature-a
feature-b
feature-c
feature-d
feature-e
feature-f
feature-g
feature-h
...

ブランチ切りすぎ、残しすぎ

いらないのを消したい...あれ?どのbranchが生きてるんだっけ?作業してたbranchどれだっけ?

とにかく直近作業してたブランチだけを参照したい場合

$ git branch --sort=authordate

mergeされてないものは無条件で -d

$ git branch --merged|egrep -v '\*|develop|master'|xargs git branch -d

なるべく早めにbranch整理しましょう。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?