Connect GitHub and Azure using OpenID Connect
OpenID Connect (OIDC) enables GitHub Actions workflows to authenticate and access resources inside your Azure tenant. The primary advantage is you no longer have to store Azure credentials as GitHub…
OpenID Connect (OIDC) enables GitHub Actions workflows to authenticate and access resources inside your Azure tenant. The primary advantage is you no longer have to store Azure credentials as GitHub…
Creating an SSH key is an excellent authentication method when working with GitHub. However, sometimes you need to work with multiple GitHub accounts on the same system, like a work…
In previous articles, you learned “How to Revert a Commit in Git” (a PowerShell Git tutorial) and “How to Merge in Git: Remote and Local Git Repositories Tutorial.” You can…
Are you working with GitHub repositories but tired of typing in your username and personal access token each time you clone or push changes? You need to use SSH authentication!…
Using Git, you can create commits or snapshots of your code and revert to previous versions. Typically when working with Git and code repositories, you create the remote one first,…
A great feature of Git is the ability to create branches. Branches allow for creating your own snapshot of the master branch in order to add a new feature or…
Before I had a basic understanding of how git works, I used to keep my local repo all the time, even after I had pushed changes to the remote repo…
I created a Python script locally on my laptop to solve a coding challenge. However, after completing the script, I decided I wanted to create a repository in my GitHub…