My real case
- Migrate repository from BitBucket to GitHub.
- I could delete Commit histories.
What I’ve done
- Update
.gitignore
. - Delete
docs
directory. - Update netlify.toml
[build]
publish = "docs"
command = "hugo --gc --minify"
[context.production.environment]
HUGO_VERSION = "0.87.0"
rm -rf data #old dir structure
rm -rf .git
rm -rf theme/mainroad
git init
git submodule add git@github.com:Vimux/Mainroad.git themes/mainroad
git config --global user.name atlex00
git config --global user.email ...
git commit
git push origin master --force