Latest Articles
Git rename branch - local and remote (PROPERLY)
The three steps to rename branch in git. Step 1; git branch -m old_branchname new_branchname, Step 2: git push origin :old_branchname new_branchname, Step 3: …
Install DVWA on Kali Linux (Step-by-Step)
Step by step instructions to install DVWA in Kali Linux with screenshots.
How to SAFELY git delete branch? [SOLVED]
You can safely delete local branch with git branch -d yourbranch. To delete a remote branch, use git push origin :mybranch, assuming your remote name is origin …
Create VM in Azure with 3 different methods [Step-by-Step]
Step by Step guide to create VM in Azure using Azure Portal, CLI, Powershell with screenshots
Azure ARM Templates Explained with Examples
Azure ARM templates are an Infrastructure as Code (IaC) methodology of deploying resources in the Azure cloud. They use declarative JSON to define resources and …
