-
Automating tasks using Git Hooks custom scripts
Automating tasks using Git Hooks custom scripts Git hooks are custom scripts that automatically execute in response to specific Git events. These scripts help automate tasks such as code validation, testing, notifications, or enforcing workflows during Git operations like commits, pushes, pulls, merges, and more.… [ Read More ]
-
Things to know about Git Hooks
Things to know about Git Hooks Git hooks are scripts that are executed automatically in response to certain Git events. They help automate tasks during specific stages of Git operations, such as committing, pushing, cloning, or merging. Git hooks allow for customization and integration with… [ Read More ]
-
Hands-on Demo – Azure Repos collaborating with Pull Requests
Hands-on Demo – Azure Repos collaborating with Pull Requests In this demo, we'll walk through the steps of collaborating with pull requests in Azure Repos. We'll cover creating a PR, adding reviewers, addressing feedback, and merging changes. Step-by-Step Demo: Collaborating with Pull Requests 1. Create… [ Read More ]
-
Collaborating with Pull Requests in Azure Repos
Collaborating with Pull Requests in Azure Repos In Azure Repos, Pull Requests (PRs) are used to facilitate code review, collaboration, and ensure code quality before merging changes into a protected branch (e.g., main, master). Below is a guide on how to create, review, and manage… [ Read More ]
-
Implementing Branch Merging Restrictions in Azure DevOps and GitHub
Implementing Branch Merging Restrictions in Azure DevOps and GitHub Branch merging restrictions ensure that only authorized users or approved workflows can merge branches into specific branches like main, develop, or any protected branch. Below is how you can implement these restrictions in Azure DevOps and… [ Read More ]
-
Know about Service Limits and Quotas in Azure
In Microsoft Azure, service limits and quotas define the boundaries for how much of a particular service or resource you can provision or consume. These limits are essential to understand, as they help prevent overuse, optimize costs, and ensure that your applications and services remain… [ Read More ]
-
Exploring Fork Workflow in GitHub
Exploring Fork Workflow in GitHub The Fork Workflow is commonly used in open-source projects or when collaborating across different repositories. It enables contributors to make changes in a separate forked repository, ensuring that changes can be reviewed and merged into the main repository by the… [ Read More ]
-
Acquire knowledge about the scope of Azure Alert Rules
The scope of an Azure alert rule defines the resources or resource groups that the rule will monitor. It specifies which resources, services, or components the alert rule is applied to, and determines when the alert will be triggered based on the conditions set within… [ Read More ]
-
Exploring GitHub Flow for Continuous Delivery
Exploring GitHub Flow for Continuous Delivery GitHub Flow is a lightweight Git branching model designed for simplicity and speed, making it an excellent choice for teams practicing Continuous Delivery or Deployment. It uses a minimal branching strategy that revolves around the main branch** as the… [ Read More ]
-
Hands-on Demo – All Git Branch Models for Continuous Delivery
Hands-on Demo – All Git Branch Models for Continuous Delivery Below is a summary of four commonly used Git branching models for Continuous Delivery (CD): GitHub Flow, GitFlow, Release Branching, and Trunk-Based Development (TBD). Each model is explained with an example workflow. 1. GitHub Flow… [ Read More ]