如果我想回滚到较旧的提交如何找到<tag branch =“”commit =“”id =“”> </tag>

时间:2013-08-14 21:48:35

标签: git github

在Github中哪里可以找到我要回滚的提交的<tag/branch/commit id>

3 个答案:

答案 0 :(得分:4)

git log允许浏览历史记录。在Github仓库页面的左上角,您可以点击“46提交”查看此日志。

答案 1 :(得分:2)

GitHub 中,您可以从项目主页浏览存储库的提交历史记录,分支和标记(GitHub称之为“版本”)。

只需导航至https://github.com/<Username>/<Repository Name>

请参阅下面突出显示的区域 -

GitHub Repository with highlights for information.

答案 2 :(得分:0)

您有几个选择:

  1. 打开git bash并输入gitk
  2. 输入git log --oneline
  3. 如果您知道消息

    ,请搜索您的提交

    git log --oneline | grep "your search phrase"

  4. 如果使用命令行不太好,请使用sourcetree http://www.sourcetreeapp.com/download/