LoginSignup
49
44

More than 5 years have passed since last update.

ブランチに説明を書く

Last updated at Posted at 2012-12-01
git branch --edit-description [BRANCHNAME]

のようにするとブランチの説明を書くことができる.データは.git/configの中に

[branch "foo"]
    description = This is for foo!

のように入っているため,

git config branch.foo.description
# => This is for foo!

と取り出すことができる.

49
44
1

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
49
44