-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ed Reckers edited this page Feb 23, 2014
·
5 revisions
WP Project Bootstrap Wiki
If when moving to WP Project Bootstrap you find that there are just too many conflicts to resolve you may just want to start clean. What you'll want to do the following:
- 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'
- 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 $ git push --force
- This wipes out all commit history.