git--shallow update not allowed

记录一次git操作艰辛之旅
最近一段时间正在学习ant-design-pro,按照官方步骤拉取了一下ant-design-pro的代码,然后想推送到自己的git仓库,记录一下学习的过程。but,在我向自己仓库推送的时候,却困难重重!
1.我先在github上创建了自己的仓库,并初始化了README.md,然后本地添加了git仓库的地址,在我进行推送的时候,就出现了种种问题。。。
问题1:
git--shallow update not allowed_第1张图片
问题原因: 当时拉去ant-design-pro代码时,加了深度=1,so这就是一个遗留的bug,此刻的我就需要填一填坑!
解决办法:
git fetch --unshallow orig
先拉取一下原来的git库
git--shallow update not allowed_第2张图片
再进行推送至新的git仓库
git push origin_ant master
git--shallow update not allowed_第3张图片
happy ending!!1

你可能感兴趣的:(问题解疑)