美文网首页
git log 参数报错

git log 参数报错

作者: webmrxu | 来源:发表于2020-12-17 19:53 被阅读0次

错误信息

fatal: ambiguous argument 'origin': unknown revision or path not in the working tree

解决

因为版本不支持这个参数,需要查下当前系统的git版本,以及命令行中参数是哪个版本支持的。

以下命令查询当前系统版本。

$ git --version

再去官方文档中查询该参数版本。

https://git-scm.com/docs

参考

stackoverflow unknown revision or path not in the working tree

相关文章

  • git log 参数报错

    错误信息 fatal: ambiguous argument 'origin': unknown revision...

  • Git分支操作命令

    git查看各个branch之间的关系图 命令参数说明git log --graph图表;曲线图git log --...

  • git reset --hard、git reset --sof

    补充git相关命令git log:查看仓库的历史版本git log --oneline:加上这个参数可以更加简洁查...

  • log查看纪录

    查看提交历史 git log 查看提交纪录 默认不用任何参数的话,git log 会按提交时间列出所有的更新,最近...

  • Git 基础 - 查看提交历史

    查看提交历史 git log 命令用于查看提交历史 默认不使用参数的话,git log 会按提交时间列出所有的更新...

  • git log 的使用方法记录

    参考链接git log命令使用 git log 如果不带任何参数,它会列出所有历史记录,最近的排在最上方,显示提交...

  • 二、GIT基础-查看提交历史

    3、查看提交历史 我们可以使用git log这个命令来查看提交的历史记录。默认不用任何参数,git log 会按提...

  • git pull无效

    很长时间没用了,突然发现git pull没有任何反应,也不报错。打印git log,发现commitId也不对。记...

  • Git查看提交历史

    不带参数的log命令 git log --prety=format常用的选项 示例:显示作者的电子邮件地址,提交者...

  • git常用命令

    git log git reflog git reset git log git reflog git check...

网友评论

      本文标题:git log 参数报错

      本文链接:https://www.haomeiwen.com/subject/plxtnktx.html