git clone也包含提交注释吗?

时间:2016-11-11 21:36:12

标签: git

我正在备份git hub和bitbucket git clone也包含提交注释吗? 如果我在目录中执行git日志,我就能看到提交历史记录。 我如何看待提交评论

1 个答案:

答案 0 :(得分:1)

当然。

当您克隆时,您将获得所有提交+标记+注释+消息。

键入git log,您将看到所有

在git中你可以选择添加注释和评论,你也会得到很好的效果。

  • 查看历史记录(日志):

    git log 
    
  • 查看所有分支:

    git branch -a
    
  • 查看所有代码:

    git tag -l
    
  • 如果您希望查看当前所有分支机构的日志记录:*

    git log --oneline --decorate --graph