git notes的用法

Posted dakewei

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git notes的用法相关的知识,希望对你有一定的参考价值。

1. notes翻译为中文评注

2. notes出现的作用

  避免某一次commit的内容修改导致当前以及随后的commit发生变化,相当于在当前的commit后面追加一些信息,如:

  某次commit的内容如下: (git log 1234567890123456789012345678901234567890 )

    commit 1234567890123456789012345678901234567890

    Author: Jello Smith <Jello_Smith@163.com>
    Date: Mon Jun 1 13:13:13 2013 +0800
      It is an example!!!

      Signed-off-by: Jello Smith <Jello_Smith@163.com>

 

  对该commit加上评注后: (git notes add 1234567890123456789012345678901234567890)  

    commit 1234567890123456789012345678901234567890

    Author: Jello Smith <Jello_Smith@163.com>

    Date: Mon Jun 1 13:13:13 2013 +0800

      It is an example!!!

      Signed-off-by: Jello Smith <Jello_Smith@163.com>

    

    Notes:

      Version: v0

      Date: 01-06-2013 

3. notes参考用法在这里

 

以上是关于git notes的用法的主要内容,如果未能解决你的问题,请参考以下文章

Note.js的stream用法一例

git 日常用法

git log -p 的用法

git用法

git用法和相关推荐资料

Git 教程 - Git 基本用法