Azure Git Repos
Git is a popular version control system with many developers. The ability of Git to be used on any platform and with almost any development tool makes it a great version control system. Azure DevOps Services comes with Azure Git Repos, which you can use with a development tool of your preference. Azure Git Repos also provides you with tight integration to Azure Boards and Azure Pipelines. You can leverage Azure Boards capabilities and track requirements alongside its implementation as well as automate builds and deployment easily with your code in Azure Git Repos.
Git is a core component of Azure DevOps, continuous delivery pipelines and cloud-native computing.
- Create a branch for the changes you plan to make and give it a name, such as users/jamal/fix-bug-3214 or cool-feature-x.
- Commit changes to your branch. People often have multiple commits for a bug fix or feature.
- Push your branch to the remote repository.
- Create a pull request so other people can review your changes. To incorporate feedback, you might need to make more commits and push more changes.
- Complete your pull request and resolve any merge conflicts from changes other people made after you created your branch.