How to Revert a Git Commit
Git is a powerful version control system, but sometimes you may need to revert a commit. Maybe you made a mistake in your code, or maybe you want to go…
Git is a powerful version control system, but sometimes you may need to revert a commit. Maybe you made a mistake in your code, or maybe you want to go…
You may at times find that you need to revert a commit and need to find the commit hash. This entry explains the steps. This entry explains what a Git…
This article goes over what is a Git tag and how to use Git tags, including creating, listing, and deleting. What is a Git Tag Tags are references that point…
This blog entry shows how to use Git Config files to support multiple Git accounts on the same machine. It focuses on what are Git Config files and how one…
In this article, I will show how I step-by-step created a github action that checkout, zipped, and added the zipped file to the repo, each time I commit to main.…