在Github中哪里可以找到我要回滚的提交的<tag/branch/commit id>
?
答案 0 :(得分:4)
git log
允许浏览历史记录。在Github仓库页面的左上角,您可以点击“46提交”查看此日志。
答案 1 :(得分:2)
在 GitHub 中,您可以从项目主页浏览存储库的提交历史记录,分支和标记(GitHub称之为“版本”)。
只需导航至https://github.com/<Username>/<Repository Name>
。
请参阅下面突出显示的区域 -
答案 2 :(得分:0)
您有几个选择:
gitk
git log --oneline
如果您知道消息
,请搜索您的提交 git log --oneline | grep "your search phrase"
如果使用命令行不太好,请使用sourcetree http://www.sourcetreeapp.com/download/