当前位置: 代码迷 >> 综合 >> 【git push报错】:See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details
  详细解决方案

【git push报错】:See the ‘Note about fast-forwards‘ in ‘git push --help‘ for details

热度:43   发布时间:2024-01-10 19:34:37.0
报错

See the ‘Note about fast-forwards’ in ‘git push --help’ for details.

分析

是因为本地仓库 和 远程仓库不是同一个仓库导致push失败

原先自己的操作

  1. 显示在自己的本地 git init 一个本地仓库。
  2. 然后进行远程的push 导致出错(虽然远程的名是一样 但是有问题)
解决
  • git clone [https]

先去把远程的仓库clone下来。在这个文件中进行就好了。

  相关解决方案