git push returns remote: Permission denied , URL returned error: 403
git push returns remote: Permission denied , URL returned error: 403
我已经克隆了这个 repo
git clone https://github.com/arunavo4/sol-sell-escrow/
在构建和部署它之后,我注意到它在开发周期中说
# Push your code to the main branch to auto-deploy on Netlify.
git push
所以我刚做了一个 git push
我得到了
remote: Permission to arunavo4/sol-sell-escrow.git denied to Hretic. fatal: unable to access 'https://github.com/arunavo4/sol-sell-escrow/': The requested URL returned error: 403
我搜索过,看到很多人问这个问题,但主要是关于他们自己的回购协议,我不拥有这个回购协议...我可以推动它吗?
我不怎么和 git 一起工作,我很迷茫!一些额外的信息:
git remote -v
origin https://github.com/arunavo4/sol-sell-escrow (fetch)
origin https://github.com/arunavo4/sol-sell-escrow (push)
i dont own this repo ... can i push to it ?
不,你不能。正如您所说,您不拥有它。
但是,您可以在 GitHub 上 fork 存储库。分叉将属于您,如果您愿意,您可以克隆它并随后推送到它。
我已经克隆了这个 repo
git clone https://github.com/arunavo4/sol-sell-escrow/
在构建和部署它之后,我注意到它在开发周期中说
# Push your code to the main branch to auto-deploy on Netlify.
git push
所以我刚做了一个 git push
我得到了
remote: Permission to arunavo4/sol-sell-escrow.git denied to Hretic. fatal: unable to access 'https://github.com/arunavo4/sol-sell-escrow/': The requested URL returned error: 403
我搜索过,看到很多人问这个问题,但主要是关于他们自己的回购协议,我不拥有这个回购协议...我可以推动它吗?
我不怎么和 git 一起工作,我很迷茫!一些额外的信息:
git remote -v
origin https://github.com/arunavo4/sol-sell-escrow (fetch)
origin https://github.com/arunavo4/sol-sell-escrow (push)
i dont own this repo ... can i push to it ?
不,你不能。正如您所说,您不拥有它。
但是,您可以在 GitHub 上 fork 存储库。分叉将属于您,如果您愿意,您可以克隆它并随后推送到它。