gpt4 book ai didi

github - 在 Github 中查看特定日期给定目录的提交

转载 作者:行者123 更新时间:2023-12-04 23:17:17 26 4
gpt4 key购买 nike

我想在 Github 中查看给定“目录”和给定日期之后的所有提交。我已经阅读了 Github API 文档,并且“路径”和“因为”参数完成了这项工作。 https://developer.github.com/v3/repos/commits/#list-commits-on-a-repository

但是,我无法在 Github 上查看它们。 “因为”参数似乎不适用于 Github。示例:https://github.com/torvalds/linux/commits?path=Documentation&since=2016-04-04T16:00:49Z

知道我怎么能做到这一点吗?

谢谢,
莱蒂西亚

最佳答案

  • 命令行:

    使用 git log --since 选项。

    git log --since="2015-12-01"

    这将告诉自 2015 年 12 月 1 日以来的所有提交/操作。结帐链接
    Git commit history

  • 编辑:
  • Git 中心:

    根据我的研究,没有简单的解决方案可以在特定日期“之后”查看 github 提交。但是,您可以使用比较选项来比较两个时间段之间的 repo /分支,这将为您提供“特定日期之后”提交的 View 。

    例如:以下比较两个时间段之间的分支,从而列出该时间段之间的所有提交。

    https://github.com/torvalds/linux/compare/master@{2016-04-14}...master@{2016-04-25}

    希望这可以帮助!

    注意:我会尽可能推荐命令行,因为它肯定会给你更多的灵活性。
  • 关于github - 在 Github 中查看特定日期给定目录的提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36847513/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com