azure-repos

Are the Azure DevOps extensions for Slack affected by changing the Azure DevOps url?

萝らか妹 提交于 2021-01-01 06:38:20
问题 At the company, we will change the URL for the Azure Devops workspace from https://oldname.visualstudio.com to https://dev.azure.com/newname . We have a lot of connections to Slack in Azure DevOps using two approaches. Older links via service hooks in Azure Devops, new links are via slack applications Azure Repos and Azure Pipelines. Service hooks in Azure DevOps use Slack's Incoming webhooks, so they will not be affected. However, Microsoft prefers to use its Slack Azure Repos and Azure

How to connect TFS in Visual Studio code without Azure Repo

[亡魂溺海] 提交于 2020-06-23 14:10:33
问题 I have just started a project in angular 8 for my work. I am very new to angular. I was suggested to use VS code for development. I have successfully perform the initial installation and also have successfully build couple of html pages. Now i want to commit all the development work to tfs.. I did a lot of research and all the article suggested to use Azure Repo. My work does not have Azure Repo. So my question is, are there any other ways to connect to TFS from Visual Studio Code. And how

Move multiple Azure Devops projects into one project (same org)

╄→гoц情女王★ 提交于 2020-06-16 05:26:09
问题 I am in an enterprise that creates many large to small scale applications. Way back when I started using Visual Studio Online/VSTS/now Azure devops I broke all of these apps out into different projects. However, now it seems there is good support for managing multiple apps in one project, and this seems easier from a management standpoint. From the research I did it seems i can do each service individually: Repos : Select Import Repository from the consolidated project and enter in the URL of

Azure devops - server-side git hooks

孤街醉人 提交于 2020-05-15 05:56:45
问题 How can we implement server-side hooks, or any similar solution, to restrict git push into git server? For example, we want to disable push of commits containing *.class files. 回答1: I don't think Azure DevOps uses hooks. You can use Branch Policies to make use of an external validation service (as I understand it this uses web hooks). Additional: the status of this User Voice request indicates the above is the official answer. But maybe the simple case would be .gitignore and code reviews?

Azure DevOps Repos synchronization between Organization

↘锁芯ラ 提交于 2020-05-01 09:52:27
问题 We have two Azure DevOps Organizations, 1. Development 2. Client I would like to know if we can synchronize Azure DevOps Repos from one organization (Development) to different organization (Client) in a secure way? If it is possible, what would be the best way to sync from one organization to another securely? NOTE: We are able to manually clone the Repo from one to another organization for the first time with the help of PAT and GIT Auth but the problem arises when we want to update or re

Azure DevOps Repos synchronization between Organization

拜拜、爱过 提交于 2020-05-01 09:48:35
问题 We have two Azure DevOps Organizations, 1. Development 2. Client I would like to know if we can synchronize Azure DevOps Repos from one organization (Development) to different organization (Client) in a secure way? If it is possible, what would be the best way to sync from one organization to another securely? NOTE: We are able to manually clone the Repo from one to another organization for the first time with the help of PAT and GIT Auth but the problem arises when we want to update or re

Force a branch naming convention in Azure DevOps Git

不羁岁月 提交于 2019-12-22 04:38:07
问题 We use Git hosted in Azure DevOps for all of our source code. So far we have used Git Hooks to ensure that team members follow a branch naming convention {branchtype}/{username}/{friendlyname}/{workitemtype}{workitemid} . Examples: dev/dparkar/addauth/ta123456 hf/jsmith/memoryleak/bu11111 The branch naming convention allow us to clearly understand whether it's a regular development branch or a hotfix branch and which work item it is associated with, among other things. To setup Git Hooks