Enable TLS 1.2 on Windows 7

Transport Layer Security (TLS) is the next generation for Secure Socket Layer (SSL) protocal. It provides secure communication over internet. TLS is used by Web Browsers and other applications which require data to be securely exchanged over a network such as VPN, email, FTP etc. Windows 7 support...

Deploy Azure function using Azure CLI

The Azure command-line interface (Azure CLI) is a set of commands used to create and manage Azure resources. It is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation. You can check how to install and configure Azure CLI in you machine...

Git: Delete commits from a branch

Using Revert feature in Git will keeps the older commit in the branch. It just revert the changes what we have done in a commit. The Revert also will shown as a separate commit in the branch. But if you want to remove a commit from a branch permanently, you need to use git reset command as below git...