Azure DevOps is a cloud-based platform that provides a complete suite of development tools, including Git repositories. You can link a SQL Server database to a Git repository hosted in Azure DevOps to track changes, collaborate with your team, and manage version history.
1. Sign in to your organization at https://dev.azure.com/YourOrganizationName.
2. In the upper-right corner, select + New project.

3. In the Create new project dialog:

4. Click Create.
1. In https://dev.azure.com/YourOrganizationName, hover over your project and select Repos.

2. On the top menu, select DevDemo > + New repository.
3. In the Create a repository dialog, enter the required repository settings:
4. Click Create.
The repository is initialized with the default main branch.

You can create a local copy of a remote Git repository by cloning it into a local folder on your computer. Cloning a remote repository links each branch in the local repository to its corresponding branch in the remote repository, enabling you to sync changes between them.
To clone a repository:
1. Create an empty folder on the drive of your computer to store the local repository.
For example, D:\azuredevops.
2. Go to https://dev.azure.com/YourOrganizationName and open the project that contains the repository you want to clone.
3. In the left menu, select Repos > Files.

4. In the upper-right corner, select Clone.
5. In the Clone Repository dialog, select HTTPS or SSH, then copy the repository URL.

6. Open Command Prompt (CMD).
7. Navigate to the empty folder you created.
Tip
Use the
cdcommand to navigate to a specific folder in the command prompt.
8. Clone the repository by running:
git clone <repository-url> .
Tip
Include a period (.) at the end of the command to clone the repository into the current folder.
9. If the repository is empty, run:
git commit --allow-empty -m initial
git push

After cloning the repository, you can link your database to the local repository folder.
To link a database to the source control:
1. In Database Explorer, right-click the database you want to link and select Source Control > Link Database to Source Control.
Alternatively, on the top menu, select Database > Link Database to Source Control.
2. In the Link Database to Source Control dialog, click + in the Source control repository field.
3. In the Source Control Repository Properties dialog, configure the repository settings:
Warning
The Repository folder must point to a local folder. Do not enter a remote URL.
By default, the selected folder name is used as the repository name. To specify a different name, enter it manually.

4. Choose a database development model:
5. To connect the database to the repository, click Link.

The Refresh window opens and displays the progress of the refresh operation.
After the database is linked, it appears in Database Explorer with the source control icon:

After linking the database, your next step depends on whether the repository is new or already in use by your team:
In the Local changes section of the Source Control Manager, select the objects you want to add to version control, then click Commit.
For instructions, see Commit changes.
In the Remote changes section, select the objects you want to retrieve, then click Get Latest.
Note
The Get Latest option is available only in the dedicated development model.
For instructions, see Get the latest version.