How to reset a remote and local GIT repository to remove all revisions, and start fresh with the current Head as initial commit.

link|improve this question

71% accept rate
related: stackoverflow.com/questions/495345/… – miku Jan 5 '10 at 13:11
I don't want to cherry pick or do anything else, I just want to remove all changes and reset the public repo also. As I am new Git user, I made some wrong commits. Removing .GIT directory is not an option as there is a public repository also. – Priyank Bolia Jan 5 '10 at 13:22
You can do a force push also, so removing the .git dir is actually an option. – Computer Linguist Jan 5 '10 at 13:24
just nitpicking, but "revision" is an svn terminology and doesn't make much sense in a tree shaped history. – fish Nov 30 '11 at 15:41
feedback

2 Answers

up vote 10 down vote accepted

Completely reset?

1) Delete the .git directory locally. 2) Recreate the git repostory

$ cd (project-directory)
$ git init
$ (add some files)
$ git add .
$ git commit -m 'Initial commit'

3) Push to remote server, overwriting. Remember you're going to mess everyone else up doing this... you better be the only client.

> git remote add origin <url>
> git push --force
link|improve this answer
+1 Was my first thought too. You have to backup and restore any local configs you have though. – R. Martinho Fernandes Jan 5 '10 at 13:27
Still in the remote repo at GitHub, in the messages I see previous messages. – Priyank Bolia Jan 5 '10 at 13:44
but the commits are gone, and repository is reset. Can we remove those previous messages also in front of the filenames. – Priyank Bolia Jan 5 '10 at 13:45
Remove the remote repository directly on GitHub and recreate it there. – Bombe Jan 5 '10 at 14:14
1  
Should be git push --force instead of git push -force – William Notowidagdo Nov 30 '11 at 7:26
show 1 more comment
feedback

First, follow the instructions in this question to squash everything to a single commit. Then make a forced push to the remote:

$ git push origin +master

And optionally delete all other branches both locally and remotely:

$ git push origin :<branch>
$ git branch -d <branch>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.