내용으로 건너뛰기

error git clone aws node runner

0

i am trying to clone aws node reop from github i receive this error "it clone https://github.com/aws-samples/aws-blockchain-node-runners.git
Cloning into 'aws-blockchain-node-runners'... fatal: unable to access '[https://github.com/aws-samples/aws-blockchain-node-runners.git/](https://github.com/aws-samples/aws-blockchain-node-

질문됨 일 년 전277회 조회

2개 답변
0
수락된 답변

That error usually shows up when Git can't reach GitHub properly — it's more of a network or SSL issue, not a problem with the repo itself. Double-check your network 1If you’re on a corporate VPN, behind a proxy, or using restricted Wi-Fi, it might be blocking GitHub. Try cloning again using a mobile hotspot or from a different network.

Make sure Git is updated Older versions of Git can have SSL/TLS handshake issues with GitHub. Run:

git --version If it’s old, upgrade to a newer version.

Try the SSH URL instead (if you’ve got SSH keys set up):

git clone git@githubdomian:aws-samples/aws-blockchain-node-runners.git

Check if curl or Git can hit GitHub: curl https://github.com If that fails, your system might be blocking outbound HTTPS.

Let me know what setup you're on (OS, Git version, network) — happy to help dig deeper if it still fails.

답변함 일 년 전

전문가

검토됨 일 년 전

0

The error you're encountering while trying to clone the AWS blockchain node runners repository from GitHub suggests there might be an issue with your access to the repository or your network connection. Here are a few steps you can try to resolve this issue:

  1. Check your internet connection to ensure it's stable and working properly.

  2. Verify that you have the necessary permissions to access the repository. If it's a private repository, make sure you're authenticated with GitHub.

  3. If you're using an SSH URL, try using the HTTPS URL instead (which is what you've provided in your error message).

  4. Ensure that your Git installation is up to date.

  5. If you're behind a corporate firewall or using a VPN, check if it's blocking your access to GitHub.

  6. Try clearing your Git credentials and re-entering them.

  7. If you're using a GitHub token for authentication, make sure it's valid and hasn't expired. You may need to generate a new token if the current one is invalid.

If none of these steps resolve the issue, you may want to check GitHub's status page to see if there are any ongoing issues with their service. If the problem persists, you might need to contact your network administrator or GitHub support for further assistance.
Sources
Troubleshoot GitHub token issues - AWS CodeDeploy

답변함 일 년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

관련 콘텐츠