Git Server
Git is an open-source distributed version control system, which allows you to maintain software source code, documents, or any type of file on a computer with speed and efficiency. With Git, you can collaborate with different groups of people simultaneously with relative ease.
To create a Git repository:
- Sign in to DSM using an account with administrative privileges.
- Go to Control Panel > Terminal & SNMP > Terminal then enable SSH service.
- Go to Control Panel > Shared Folder and create a shared folder for Git repositories.
- On your computer, enter the command below to access Synology NAS via SSH:
ssh [Synology NAS admin user name]@[Synology NAS IP address or hostname] -p [The port number of SSH]For example, you can enter:
ssh myadminuser@192.168.1.2 -p 22 - Enter the command below to change the current directory to the shared folder you created in step 3:
cd /[Volume name]/[Shared folder name]/For example, you can enter:
cd /volume1/mysharefolder/ - Enter the command below to create a folder on your computer for the Git repository:
mkdir [Folder name] - Enter the command below to change the current location to the new folder:
cd [Folder name] - Enter the command below to create a Git bare repository under the folder you created in step 6:
git init --bare
Note:
- Please do not perform the above commands with root permission.
To allow users to use Git:
- Sign in to DSM using an account with administrators’ privileges.
- Go to Control Panel > Terminal & SNMP > Terminal, and enable SSH service for users to access Git repositories via SSH.
- Go to Control Panel > User & Group and create a user. Grant Read/Write permission of the Git repository shared folder to the user.
- Go to Package Center > Installed and open the Git Server package.
- Allow the user to access repositories via git-shell.
Note:
- The permissions of default users (root, admin, and guest) cannot be edited.
- Apart from the user permission list for Git Server, all operations for Git Server should be performed via SSH instead of DSM desktop.
- Git users will be restricted to Git-related activities with a shell tool called git-shell. This login shell will be applied to Git users to ensure that the accounts are only used for Git operations. As a result, Git users may only use the SSH connection to push and pull Git repositories, and will not have full access to DSM.
To clone Git repositories from DSM to a local directory:
- Install Git on your computer.
- Access the Git repository located on your Synology NAS. To successfully access the repository, please make sure:
- SSH service is enabled.
- The user account you use has the permission for accessing the repository.
- The user account you use has the Read/Write permission for the shared folder where the repository is located.
- Enter the command below to clone the repository from DSM to the local directory:
git clone ssh://[Your username]@[Synology NAS IP address or hostname]:[Your repository]For example, you can enter:
git clone ssh://mygituser@192.168.1.2:/volume1/mysharefolder/myrepo1 - You can access the repository from the local directory with the command below:
cd [Your repository]For example, you can enter:
cd /volume1/mysharefolder/myrepo1