rust-by-practice
rust-by-practice copied to clipboard
git clone HTTPS URL
Changed the git clone URL into an URL that is available to all people that have Internet access.
Changed the git clone URL into an URL that is available to all people that have Internet access.
Could be read as
Changed the git clone URL into an URL that is also available to git clients that don't have an SSH-key at github.com. Both human and CI-bots.
robot@ci-cd-host:$ git clone [email protected]:sunface/rust-by-practice.git
Cloning into 'rust-by-practice'...
The authenticity of host 'github.com (140.82.121.3)' can't be established.
ED25519 key fingerprint is SHA256:+DiY3wvvV6TuJJhbpZisF/zLDA0zPMSvHdkr4UvCOqU.
This key is not known by any other names.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added 'github.com' (ED25519) to the list of known hosts.
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
robot@ci-cd-host:$ git clone https://github.com/sunface/rust-by-practice
Cloning into 'rust-by-practice'...
remote: Enumerating objects: 4272, done.
remote: Counting objects: 100% (874/874), done.
remote: Compressing objects: 100% (436/436), done.
remote: Total 4272 (delta 581), reused 662 (delta 436), pack-reused 3398
Receiving objects: 100% (4272/4272), 2.79 MiB | 18.10 MiB/s, done.
Resolving deltas: 100% (2747/2747), done.
robot@ci-cd-host:$