git branch --edit-description [BRANCHNAME]
のようにするとブランチの説明を書くことができる.データは.git/configの中に
[branch "foo"]
description = This is for foo!
のように入っているため,
git config branch.foo.description
# => This is for foo!
と取り出すことができる.
Go to list of users who liked
More than 5 years have passed since last update.
git branch --edit-description [BRANCHNAME]
のようにするとブランチの説明を書くことができる.データは.git/configの中に
[branch "foo"]
description = This is for foo!
のように入っているため,
git config branch.foo.description
# => This is for foo!
と取り出すことができる.
Register as a new user and use Qiita more conveniently
Go to list of users who liked