Back to the main page

Clone a project from remote GitLab repo

Copy remote project URL to the clipboard


Clone the remote project to your computer

# git clone git@gitlab-host.company.ca:sysadmins/rsync-admin.git 
Initialized empty Git repository in /home/zdudic/gitlab/rsync-admin/.git/
remote: Counting objects: 6, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 6 (delta 1), reused 0 (delta 0)
Receiving objects: 100% (6/6), done.
Resolving deltas: 100% (1/1), done.

This creates project directory, in this case will be "rsync-admin"

Go there to work in your project.
# cd rsync-admin



Back to the main page