GitLab is a free and open-source web-based platform for Git repositories that allows web developers to collaborate on their code, plan, test, deploy, and track the changes within a single tool. Some main features that GitLab offers include built-in CI/CD pipelines, container registry, and code review tools. It also allows users to host their own GitLab instance on-premises or on a private cloud, making it an attractive option for organizations that require complete control over their source code management tools.
Prerequisites
Make sure that you have:
The guide covers the following topics:
In GitLab, a Git repository is located in the project. So, to create a repository, you need to create a new project or fork an existing project. This procedure will show us how to create a project/repository.
1. Sign in to your GitLab account.
2. On the ribbon, click Create new > New project/repository.
3. Click Create blank project to create a repository.
4. On the Create blank repository page, add the repository details:
4. Click Create project to create the new repository on GitLab.
1. Create an empty folder on the drive of your computer to store the local repository. For example, you can create a folder named gitlab on the drive D.
2. Log in to your GitLab account. In the sidebar, click Projects and then click the repository you want to clone.
3. In the upper-right corner of the repository page, click Clone and select the connection protocol to copy the repository URL:
4. Start Windows Command Prompt (CMD). If you need to change the disk drive and navigate to the empty folder you created in Step 1, use the cd
command.
5. Execute the git clone
command for the repository URL you have created on GitLab.
Note
Specify a dot at the end of the command to clone the repository to the folder you have created. Otherwise, another subfolder will be created.
git clone <repository URL> .
where <repository URL>
is the URL you’ve copied in Step 3 of this procedure.
Once done, Git will create a local copy of the repository in the folder you specified in Step 1 of this procedure (gitlab in our example).
If you didn’t add any files to the repository when you created it for the first time, execute the following commands:
git commit --allow-empty -m initial
git push
You can link the database to source control using the dbForge Source Control add-in for SSMS.
1. In SSMS Object Explorer, right-click the database you want to link to source control and select Source Control > Link Database to Source Control.
2. In the Link Database to Source Control dialog that opens, click + in the Source control repository field.
3. In the Source Control Repository Properties dialog that opens, do the following:
Note
The repository folder name represents a path to the local copy of the remote repository and must not contain the URL of the remote repository.
4. Optional: Click Test to verify that the database has successfully been connected to source control.
5. Click OK to apply the changes and close the Source Control Repository Properties dialog.
6. In the Link Database to Source Control dialog, Select a database development model: dedicated or shared.
The Refresh progress window opens automatically, showing the stages of the refresh operation. The linked database gets the following icon in Object Explorer.
If you are the first person who links this database, you must make an initial commit. For this, in Source Control Manager, go to the Local changes section, select the database objects to commit, and click Commit.
If you linked a database that is already in source control, you can update your database to the latest version. For this, in Source Control Manager, go to the Remote changes section, select the objects, and click Get Latest, which is available only in the dedicated model but not in the shared model.