报错
See the ‘Note about fast-forwards’ in ‘git push --help’ for details.
分析
是因为本地仓库 和 远程仓库不是同一个仓库导致push失败
原先自己的操作
- 显示在自己的本地 git init 一个本地仓库。
- 然后进行远程的push 导致出错(虽然远程的名是一样 但是有问题)
解决
- git clone [https]
先去把远程的仓库clone下来。在这个文件中进行就好了。
See the ‘Note about fast-forwards’ in ‘git push --help’ for details.
是因为本地仓库 和 远程仓库不是同一个仓库导致push失败
原先自己的操作
先去把远程的仓库clone下来。在这个文件中进行就好了。