azure-devops
How to choose between step, job and stages in azure devop’s yaml?
This hierarchy is reflected in the structure of a YAML file like: A pipeline is one or more stages that describe a CI/CD process. Stages are the major divisions in a pipeline. The stages “Build this app,” “Run these tests,” and “Deploy to preproduction” are good examples. A stage is one or more jobs, which … Read more
Git delete remote branch in TFS git repository
The security options can be accessed for the repositories at 1. Code->Explorer 2. Select a repo form the Explorer 3. At the details of the repository, you should click to the name of the repository beside the explorer. 4. Select the Manage repositories… menu Here you can configure the rights of each contributor groups and … Read more
Work Items, Pull Requests menu not visible in Visual Studio
The reason is that you just connect to the local git repository and it likes this: You configured Remotes (Home=>Settings=>Repository Settings=>Remotes), so you can commit and sync. Refer to these steps to connect to the remote repository. Go to Team Explorer Click Manage connections=>Connect to Team project After that Open Solution in Solutions section (if … Read more
Visual Studio 2015 new files not being added to source control automatically
Folders called Release and their contents is automatically excluded from TFS (along with Debug and lots of file types). You can override this for particular folders by creating a .tfignore file, as detailed in the “Customize which files are ignored by version control” section of this link Customize which files are ignored by version control … Read more