远程拒绝(预接收挂钩被拒绝)

remote rejected (pre-receive hook declined)

我不小心尝试上传我制作的 zip 文件夹,实际上是我尝试推送的媒体加倍,结果发生了这种情况。我已经尝试搜索如何解决此问题的命令,但似乎找不到。

我试过 YouTube 视频 git push -A 我试过 git 'lfs track "*.ext" ' 还有其他几个我不记得了

谢谢!

你可以undo your previous commit。 来自链接的答案:

$ git commit -m "Something terribly misguided"             # (1)
$ git reset HEAD~                                          # (2)
<< edit files as necessary >>                              # (3)
$ git add ...                                              # (4)
$ git commit -c ORIG_HEAD                                  # (5)