Do I have 1 or 0 repositories? GitHub is ambiguous

Do I have 1 repository, or no repositories? If I have 1 repository, why isn’t it listed, and how can I peruse it? If I have no repositories, why does the number 1 appear on the "Repositories" tab’s label, and how can I set this number to 0? >Solution : Did u delete a recent… Read More Do I have 1 or 0 repositories? GitHub is ambiguous

Mac – Permission denied (publickey) – Cannot not read from remote repository

I tried cloning my project from github. I am getting the following error in my mac during the cloning process. Permission denied (publickey) fatal – Could not read from remote repository. i have already added the ssh key to my github account . >Solution : Try following these steps Step 1: create a new ssh… Read More Mac – Permission denied (publickey) – Cannot not read from remote repository

How to revert back to previous commit and make it the default branch Ignoring any further commits

I want to revert back to a previous commit and make it my new default branch in a clean way. Ignoring any future commits. this what I did: git checkout <commit-hash> git branch new-main How to make the new-main branch the default branch and make the development continue from there? >Solution : IF (not 100%… Read More How to revert back to previous commit and make it the default branch Ignoring any further commits