The Clean All discard all changes
git clean -fd
How do you move a commit to the staging area in git?
git reset --soft HEAD~1
Pushing empty commits to remote
git commit --allow-empty -m "Trigger Build"
History
git log --graph --color --dec...
Login to specific tenant from Entra ID
az login --tenant
az login --tenant 8ae4526f-98aa-4bcc-b9c8-abd102c7d981
Create resource group
az group create --name ecommerce-resource-group --location "South India"
Create container registry
az...
1. Transaction Failures & Retry Mechanisms
Q1: During a transaction process, if a transaction fails, how do you figure it out and make sure it gets reprocessed?
Scenario:
In a financial system, a customer initiates a fund transfer. Due to a networ...