How to reset a remote and local GIT repository to remove all revisions, and start fresh with the current Head as initial commit.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Completely reset? 1) Delete the .git directory locally. 2) Recreate the git repostory
3) Push to remote server, overwriting. Remember you're going to mess everyone else up doing this... you better be the only client.
|
|||||||||||||||
|
|
First, follow the instructions in this question to squash everything to a single commit. Then make a forced push to the remote:
And optionally delete all other branches both locally and remotely:
|
||||
|
|