Information Technology Reference
In-Depth Information
Hint In chapter 13 we will create and configure a Github account. Then you will be
able to use SSH URL as well; until then, you must use HTTPS URLs.
In this way you can clone all repositories available on Github.com . Remember
this command:
$ git clone https://github.com/abc/def.git
For it creates the subdirectory def/ . And the clone is stored inside it.
However, if you work on Windows and try to clone the Linux source code, for ex-
ample, you will encounter problems because filename restrictions are different with
different systems. We will analyze this in chapter 11 .
What will happen if you don't have a Github account with SSH keys configured and
use SSH URL? The SSH URL for jQuery is:
git@github.com:jquery/jquery.git
If you use it for git clone command:
$ git clone git@github.com:jquery/jquery.git
Then you would get the following error:
Permission denied (publickey)
2-2. Cloning a repository hosted on Bit-
bucket
Problem
You want to get a local copy of the Atlassian AUI repository that is stored on Bit-
bucket.org :
https://bitbucket.org/atlassian/aui
Search WWH ::




Custom Search