I have clone a fork of GitHub on my computer. it's working fine but now it's give me error every time I click on that project (that I have used) I see this error:
What is going wrong with me and my GitHub repo?
I have clone a fork of GitHub on my computer. it's working fine but now it's give me error every time I click on that project (that I have used) I see this error:
What is going wrong with me and my GitHub repo?
You could be in a DETACHED HEAD mode here.
You can check that by looking at the output of a git branch
executed within your repo working tree.
The SO question "github for windows crashing several times a day" contains instruction to recover (but backup your work in progress first, just in case).
Tools -> Open a Shell Here
.git reset --merge
' to undo the merge that caused GitHub for Windows to crash.git checkout master
' to switch from the detached HEAD.git pull
' in the shell to pull down any new changes. It will prompt you to fix any merge conflicts (which is what caused the app to crash).