ТЕМА: Lincoln : udemy azure devops - Kabrinskiy Eduard

Lincoln : udemy azure devops - Kabrinskiy Eduard 2 років 10 місяців тому #29940

Кабринский Эдуард - Using azure devops - Kabrinskiy Eduard


<h1>Using azure devops</h1>
<p>[youtube]</p>
Using azure devops <a href="remmont.com">Current news events</a> Using azure devops
<h1>Azure DevOps Wiki: Manage your project documentation and collaboration</h1>
<p>Azure DevOps has built-in support for Wiki, which gives a lot of flexibility to document the entire project from a single location. There was a time that your documentation was a Microsoft Word document in a file server, which in most cases, only the author could remember its location and use. Using Azure DevOps, we can control the overall project, document, store the files, keep track of the changes, and have automatic build and releases in a single platform that is available on the Internet and works with your Windows, Linux, and Mac the same way.</p>
<p>The Azure DevOps Wiki uses markdown language, which was was created in 2004 by John Gruber in collaboration with Aaron Swartz, and it has been used in GitHub and Azure DevOps.</p>
<p>The language is not a complete language aimed at replacing HTML. The goal was to keep it easy to write and read, and there is some syntax that emulates the most common HTML tags. We are going to see a few examples of markdown language, and after that, we will be ready to create and format our documentation.</p>
<p>It is important to remember the hierarchy in Azure DevOps. You can have multiple <em>organizations</em>, and each organization may contain several <em>projects</em>. Every single project has a Wiki. The boundaries of a Wiki are at the project level and not the organization. Keep that in mind when planning your documentation structure.</p>
<h2>Markdown language summary</h2>
<p>The following summary may help you to understand the differences between <em>markdown language</em> and HTML. Start typing on the Azure DevOps Wiki page, and as you need some formatting resources, check the table below.</p>
<p>You will be writing in markdown language quickly. Just allot some time to memorize the characters required to format text.</p>
<p> <table style="width: 36.649%;"> <tbody> <tr> <td style="width: 16.6904%;" width="120"><strong>Item</strong></td> <td style="width: 46.933%;" width="302"><strong>HTML equivalent</strong></td> <td style="width: 35.378%;" width="202"><strong>Markdown language</strong></td> </tr> <tr> <td style="width: 16.6904%;" width="120">Heading</td></p>
<h1>Title H1</h1>
</td> <td style="width: 35.378%;" width="202"># Title H1</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Heading*</td> <td style="width: 46.933%;" width="302">
<h2>Title H2</h2>
</td> <td style="width: 35.378%;" width="202">## Title H2</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Horizontal Line</td> <td style="width: 35.378%;" width="202">
</tr> <tr> <td style="width: 16.6904%;" width="120">Text in Bold</td> <td style="width: 46.933%;" width="302"> <b>Text in bold</b> </td> <td style="width: 35.378%;" width="202">**Text in bold**</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Text in Italic</td> <td style="width: 46.933%;" width="302"> <i>Text in Italic</i> </td> <td style="width: 35.378%;" width="202">*Text in Italic*</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Text in strikethrough</td> <td style="width: 46.933%;" width="302"><strike>Text strike</strike></td>
<p></tr> <tr> <td style="width: 16.6904%;" width="120">Quote</td> <td style="width: 46.933%;" width="302">-</td> <td style="width: 35.378%;" width="202">> Quote Level 1</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Quote</td> <td style="width: 46.933%;" width="302">-</td> <td style="width: 35.378%;" width="202">>> Quote Level 2 (indented)</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Links</td> <td style="width: 46.933%;" width="302">Azure Portal </td> <td style="width: 35.378%;" width="202">[Azure Portal](www.azure.microsoft.com</td> </tr> <tr> <td style="width: 16.6904%;" width="120">Code</td> <td style="width: 46.933%;" width="302">Get-AzVM</td> <td style="width: 35.378%;" width="202">````</p>
<p></tr><tr><td style="width: 16.6904%;" width="120">Image</td><td style="width: 35.378%;" width="202">![Azure Map](address.ca/img.svg)</td></tr><tr><td style="width: 16.6904%;" width="120">Unordered List</td><td style="width: 46.933%;" width="302"><ul>
<br /></li>
<li>Item 01 <br /></li>
</ul>
</td><td style="width: 35.378%;" width="202">- Item 01</td></tr><tr><td style="width: 16.6904%;" width="120">Ordered List</td><td style="width: 46.933%;" width="302"><ol>
<br /></li>
<li>Item Numbered 01 <br /></li>
</ol>
<td style="width: 35.378%;" width="202">1. Item Numbered 01</td></tr></tbody></table></p>
<p>* Heading can go up to H6 in HTML and in Markdown we represent with six ######</p>
<p>We will cover the details in Azure DevOps in our next section, but for now we can see on the left side the code in markdown language and how would be the output on the right side. That is going to be the experience to the user reading the document.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-00-1024x724.png" /></p>
<h2>Creating your first AzureDevops Wiki</h2>
<p>By default, any new project does not have any <strong>Wiki</strong> configured, and we can create them in two different ways: <strong>WikiProject</strong> or a <strong>Wiki as Code</strong>. We can also combine them to get the benefit of both worlds.</p>
<p>Let’s start creating a <strong>WikiProject</strong>, which creates a Repo Git to store all information about the Wiki, including the .md files, images, and so forth. Although it is a repo, it is hidden from view, which means that you cannot access it through repos or even project settings.</p>
<p>If you are as curious as I am, then you can access going to this website: dev.azure.com/ /</p>
<p>.wiki (Item 1). The master branch for this repo is called</p>
<p>.wiki</em> (Item 3) and we can see every single page created through the portal being an individual .md file (Item 2)</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-01-1024x457.png" /></p>
<p><strong>Note:</strong> At the time of writing, there is no easy way to delete a <strong>WikiProject.</strong> The result will be the editor to create a new page, where we can start writing in our markdown language to start the documentation of our project.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-02-1024x587.png" /></p>
<p>Using the Azure DevOps Portal to manage your Wiki is a breeze. On the left side, we can create a page using the <strong>New page</strong> (Item 1) button, and the new page will be added at the same level of the pages that are being listed above (parent level).</p>
<p>We can also create <em>sub-pages</em> to an existent page, and it helps to nest documentation on the same thread. To do that, click on the <strong>ellipsis</strong> on the desired page (item 2), and click on <strong>Add sub-page</strong> (item 3).</p>
<p>In the same location, we can change the order of the pages by dragging and dropping them as we see fit.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...20/01/1086-11-03.png" /></p>
<p>The <strong>Overview</strong> item provides a glimpse of the project, including <em>stats, members,</em> and a brief description of the project, which can be integrated with a <strong>Wiki</strong>.</p>
<p>The integration is effortless to implement. Logged in to the Azure DevOps Portal, click on <strong>Overview</strong>, and then <strong>+ Add Project Description</strong> button. In the new blade, provide a short description, select either <strong>Readme file</strong> or <strong>Wiki</strong>. In this section, we are going to choose the <strong>Wiki</strong> (Item 3), and the first page (which should be the main one or welcome page) will show up, click on <strong>Save</strong> (Item 4).</p>
<p>From now on, the documentation will be on the first page of our Azure DevOps Portal. A simple visual aid that will help you to memorize is that the first page always has a <em>Home</em> icon associated with it.</p>
<p><strong>Important note:</strong> The first page of the Wiki will always be displayed. If you change later on, the change will reflect automatically on the main page.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-04-1024x624.png" /></p>
<h2>Adding Wiki-as-a-code</h2>
<p>By default, when creating new repos, the option to add a <strong>README.md</strong> is defined automatically, and it is a file that can be written in <em>markdown language</em> the same way that we configure our pages in the WikiProject.</p>
<p>We can see that in action by looking at any existing repo. In the image below, we can choose the repo/README.md to keep the documentation up to date.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-05-1024x821.png" /></p>
<p>If the team decides to update the documentation at the repo level, we can take advantage of that process and incorporate it into the current <strong>Wiki</strong>.</p>
<p>The process to add code as Wiki is this: Click on <strong>Overview</strong> (Item 1), <strong>Wiki</strong> (Item 2), click on the dropdown menu at</p>
<p>.wiki (Item 3), and then on <strong>Publish code as a Wiki</strong> (item 4).</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-06-1024x545.png" /></p>
<p>In the new blade, select the <em>repository</em>, the <em>branch</em>, the folder (by default, the README.md is on the root), and define a Wiki name (we are going to use the current repo name added by the suffix -Wiki). Click on <strong>Publish</strong>.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...20/01/1086-11-07.png" /></p>
<p>When we open Wiki (Item 1), we can navigate between the WikiProject (Item 2) or select from the <strong>Code Wiki</strong> that has been added previously (item 3). After choosing a <strong>Code Wiki,</strong> all the files with .md extension will be listed, click on them, and the content will be displayed on the right side.</p>
<p style="clear: both"><img src="techgenix.com/tgwordpress/wp-content/upl...6-11-08-1024x667.png" /></p>
<p>Integrating both methods, we can have a WikiProject to be the main page of your project and use the actual README.md on your repos to have more concise and specific information about each workload/service of your current project.</p>
<h2>Azure DevOps Wiki: Get started</h2>
<p>So, now you know the basics of markdown language, how to manage pages in your brand-new Azure DevOps Wiki and the differences, and how we can integrate both Wiki Code and WikiProject.</p>
<p>Now it is your turn to start integrating Wiki into your Azure DevOps project!</p>
<h2>Using azure devops</h2>

<h3>Using azure devops</h3>
<p>[youtube]</p>
Using azure devops <a href="remmont.com">Today's big news</a> Using azure devops
<h4>Using azure devops</h4>
Not being able to find project documentation is way too common. Use Azure DevOps’ built-in support for Wiki to document the project from a single location.
<h5>Using azure devops</h5>
Using azure devops <a href="remmont.com">Using azure devops</a> Using azure devops
SOURCE: <h6>Using azure devops</h6> <a href="dev-ops.engineer/">Using azure devops</a> Using azure devops
#tags#[replace: -,-Using azure devops] Using azure devops#tags#
Эдуард Кабринский
breaking news today
  • TRAVELSgole
  • TRAVELSgole аватар
  • Немає на сайті
  • Елітний учасник
  • Дописи: 242
  • Репутація: 0
Адміністратор заборонив доступ на запис.
Час відкриття сторінки: 0.050 секунд