How to clone seed/kick-start project without the whole history?
问题 Note that using --depth=1 parameter prevents you from pushing the project to a new repository . for details see: "Remote rejected" (shallow update not allowed) after changing Git remote URL 回答1: You can do a git clone <git_url> delete the .git repository from your folder. Which will delete all your history. The you can do a git init which will create an entirely new git project for you. This may not be the best way. But this will work . Hope it helps. 回答2: As long as you consider full loss of