Created
June 14, 2011 03:53
-
-
Save osamu2001/1024281 to your computer and use it in GitHub Desktop.
Branch Annotations on git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://git.661346.n2.nabble.com/Feature-Request-Branch-Annotations-td1306251.html | |
$ git checkout -b hoge | |
$ git checkout -b desc/hoge | |
$ git commit --allow-empty | |
$ git branch | |
* desc/hoge | |
hoge | |
master | |
$ git show desc/hoge | |
commit a49979ab9fd5a25f1e88754fa90f922eb7b3ba01 | |
ブランチhogeに関する説明をここに書く。 | |
ブランチhogeは以下の目的で作られた。 | |
1. foo | |
2. bar | |
3. baz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment