Sorry for the inexperienced question. What I essentially want to do is clone a Laravel starter project, use it as the basis for my own project and add it to my own GitHub
private repository as a completely new project.
Via command line on my laptop I copied the remote repository
$ git clone git://github.com/andrewelkins/Laravel-4-Bootstrap-Starter-Site.git laravel
now when I try to add it to my own GitHub account it has the full list of past 4000 commits, over 200 contributors, etc. which I don't want.
So what is the best way via Git/Github to clone a starter project and add it to a private repository as though its 100% new? Is it best to clear all history (rm -rf .git)
, fork the project, or create a blank folder and grab the .zip of the project and copy it in?