How to reset a remote and local GIT repository to remove all revisions, and start fresh with the current Head as initial commit.
feedback
|
|
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.
| |||||||||||||
feedback
|
|
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:
| ||||
|
feedback
|