Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reset local git repository

Tags:

git

A few days ago I created a repository on Github, then followed the steps to add my existing solution to it. I have no idea what I did wrong, but after a few random 'git add' commands and whatnot, I now get the message in github for windows:

failed to sync this branch.
You might need to open a shell and debug the state of this repo.

Not gonna happen.

A better idea is that I delete the repository at github and start over with my local repository. I know how to delete the repository on github (I know it is easy because I have already done this once.) I am not sure how to start over locally. Is there a git command that is basically "git uninit" or "git deconstruct repository" ?

like image 509
philologon Avatar asked Aug 11 '12 00:08

philologon


3 Answers

Git stores everything about a repo at the repo's root in the hidden .git folder. Simply deleting that folder, rm -rf .git makes it as if there never was a repo there.

like image 164
Matt Greer Avatar answered Nov 03 '22 08:11

Matt Greer


  • First Go to your local repo
  • Show Hidden Files.
  • You will see a ".git" named folder in your local repo.
  • Delete That.
  • Now open Github for Windows.
  • If you click on that repo in Local Tab, you should get an Error that repo cant be found.
  • There is it, click on Re-Clone Repository button.
  • The Repo will be downloaded again and saved by default in My Documents/GitHub.
like image 22
Avi Avatar answered Nov 03 '22 07:11

Avi


I got this error on GitHub for Windows when I had lost internet connection. Once I got connection back it sync'd up fine. Apparently the error messages on the windows client just aren't descriptive enough to tell you when you've lost connectivity. It was as simple as that.

like image 2
Jason Shehane Avatar answered Nov 03 '22 07:11

Jason Shehane