我昨天还能推,现在却推不动了。
当我使用git push origin master时,我得到一个错误:
$ git remote -v
origin https://github.com/REDACTED.git (fetch)
origin https://github.com/REDACTED.git (push)
$ git push origin master
Username for 'https://github.com': REDACTED
Password for 'https://REDACTED@github.com':
To https://github.com/REDACTED.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/REDACTED.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
我的工作目录和远程存储库看起来像什么:
对我来说,是我的哈士奇包裹阻止了我的推进。
> husky - pre-push hook failed (add --no-verify to bypass)
> husky - to debug, use 'npm run prepush'
error: failed to push some refs to 'https://username@bitbucket.org/username/my-api.git'
要强制执行,只需运行git push origin master——no-verify
我运行npm run prepush来调试错误,这就是原因:
npm ERR! code ELOCKVERIFY
npm ERR! Errors were found in your npm-shrinkwrap.json, run npm install to fix them.
npm ERR! Invalid: lock file's loopback-utils@0.8.3 does not satisfy loopback-utils@^0.9.0
运行npm install并提交,问题就解决了。
通过遵循文档,你只需要把它拉到你的Github项目中。
git init -b main
git add . && git commit -m "Commit Here"
git remote add origin <REMOTE_URL>
git remote -v
git pull origin main
git push origin main
以下是我处理这类问题的一些解决方案:
fatal:无法访问<REMOTE_URL>:请求的URL返回错误:400
git remote set-url origin <REMOTE_URL>
致命的:拒绝合并不相关的历史
git pull origin main --allow-unrelated-histories