Skip to content

Latest commit

 

History

History
39 lines (20 loc) · 715 Bytes

04-Cloning-Remote-Repositories.md

File metadata and controls

39 lines (20 loc) · 715 Bytes

Cloning Remote Repositories

In this section, we will take a look at cloning remote repositories

We can clone the remote repository on our local machines

  • To clone remote repo with ssh link

    $ git clone <ssh-link-goes-here>
    

    sshlink

    sshlink1

    $ git clone [email protected]:account/remote-repo.git
    

    sshlink2

  • To check the history of the project

    $ cd remote-repo
    $ git log
    

sshlink3