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 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. As long as you consider full loss of history to be no issue, the approach suggested by Ajay is perfectly valid. But in case you want to maintain the